Home
last modified time | relevance | path

Searched refs:sp (Results 1 – 25 of 33) sorted by last modified time

12

/PHP-7.4/ext/pgsql/
H A Dpgsql.c4482 *sp, local
4491 for (bp = buffer, sp = strtext; *sp != '\0'; bp++, sp++)
4496 if (*sp == '\\')
4498 *bp = *sp;
4501 if (*sp == '\'') /* state=5 */
4517 if (isdigit(*sp))
4521 *bp = *sp;
4525 if (isdigit(*sp))
4529 *bp = *sp;
4537 memcpy(buf, sp-2, 3);
[all …]
/PHP-7.4/ext/gd/libgd/
H A Dgd.c1906 if (sp<stack+FILL_MAX && Y+(DY)>=0 && Y+(DY)<wy2) \
1907 {sp->y = Y; sp->xl = XL; sp->xr = XR; sp->dy = DY; sp++;}
1910 {sp--; Y = sp->y+(DY = sp->dy); XL = sp->xl; XR = sp->xr;}
1925 struct seg *sp; in gdImageFill() local
1966 sp = stack; in gdImageFill()
1972 while (sp>stack) { in gdImageFill()
2017 struct seg *sp; in _gdImageFillTiled() local
2034 sp = stack; in _gdImageFillTiled()
2042 while (sp>stack) { in _gdImageFillTiled()
H A Dgd_gif_in.c90 int stack[STACK_SIZE], *sp; member
455 sd->sp = sd->stack; in LWZReadByte_()
467 if (sd->sp > sd->stack) in LWZReadByte_()
468 return *--sd->sp; in LWZReadByte_()
481 sd->sp = sd->stack; in LWZReadByte_()
501 if (sd->sp == (sd->stack + STACK_SIZE)) { in LWZReadByte_()
507 *sd->sp++ = sd->firstcode; in LWZReadByte_()
512 if (sd->sp == (sd->stack + STACK_SIZE)) { in LWZReadByte_()
516 *sd->sp++ = sd->table[1][code]; in LWZReadByte_()
538 if (sd->sp > sd->stack) in LWZReadByte_()
[all …]
/PHP-7.4/ext/fileinfo/
H A Dlibmagic.patch2691 - size_t sp;
2708 - sp = strlen(dllpath);
2709 - if (sp > 3 && stricmp(&dllpath[sp - 3], "bin") == 0) {
2715 - for (sp = 0; sp < __arraycount(trypaths); sp++)
2716 - _w32_append_path(hmagicpath, trypaths[sp], dllpath);
/PHP-7.4/ext/ftp/
H A Dftp.c727 const char *sp = memchr(input, ' ', end - input); in ftp_mlsd_parse_line() local
728 if (!sp) { in ftp_mlsd_parse_line()
734 ZVAL_STRINGL(&zstr, sp + 1, end - sp - 1); in ftp_mlsd_parse_line()
736 end = sp; in ftp_mlsd_parse_line()
/PHP-7.4/ext/standard/
H A Dfile.c1734 char *sp, *dp; in php_copy_file_ctx() local
1737 if ((sp = expand_filepath(src, NULL)) == NULL) { in php_copy_file_ctx()
1741 efree(sp); in php_copy_file_ctx()
1747 !strcmp(sp, dp); in php_copy_file_ctx()
1749 !strcasecmp(sp, dp); in php_copy_file_ctx()
1752 efree(sp); in php_copy_file_ctx()
H A Dphp_crypt_r.c135 const char *sp = salt; in php_md5_crypt_r() local
149 sp = salt; in php_md5_crypt_r()
153 sp += MD5_MAGIC_LEN; in php_md5_crypt_r()
157 for (ep = sp; *ep != '\0' && *ep != '$' && ep < (sp + 8); ep++); in php_md5_crypt_r()
160 sl = (DWORD)(ep - sp); in php_md5_crypt_r()
178 if(!CryptHashData( ctx, (BYTE *)sp, sl, 0)) { in php_md5_crypt_r()
319 const char *sp, *ep; in php_md5_crypt_r() local
329 sp = salt; in php_md5_crypt_r()
333 sp += MD5_MAGIC_LEN; in php_md5_crypt_r()
336 for (ep = sp; *ep != '\0' && *ep != '$' && ep < (sp + 8); ep++); in php_md5_crypt_r()
[all …]
/PHP-7.4/ext/mbstring/
H A Dphp_mbregex.c715 char *p, *sp, *eos; in mb_regex_substitute() local
730 sp = p; /* save position */ in mb_regex_substitute()
734 smart_str_appendl(pbuf, sp, p - sp); in mb_regex_substitute()
753 smart_str_appendl(pbuf, sp, p - sp); in mb_regex_substitute()
764 smart_str_appendl(pbuf, sp, p - sp); in mb_regex_substitute()
786 smart_str_appendl(pbuf, sp, p - sp); in mb_regex_substitute()
793 smart_str_appendl(pbuf, sp, p - sp); in mb_regex_substitute()
813 smart_str_appendl(pbuf, sp, p - sp); in mb_regex_substitute()
818 smart_str_appendl(pbuf, sp, p - sp); in mb_regex_substitute()
/PHP-7.4/Zend/
H A Dzend_strtod.c1600 (sp, t) char **sp, *t; in match() argument
1606 CONST char *s = *sp;
1614 *sp = s + 1;
1622 (rvp, sp) U *rvp; CONST char **sp; in hexnan() argument
1624 (U *rvp, const char **sp)
1635 s = *sp;
1653 *sp = s + 1;
1662 *sp = s + 1;
1805 gethex(sp, rvp, rounding, sign) in gethex() argument
1932 *sp = (char*)s;
[all …]
/PHP-7.4/sapi/phpdbg/
H A Dphpdbg_out.c66 #define INS_CHAR(c, sp, bep, cc) \ argument
68 if (sp < bep) \
70 *sp++ = c; \
105 INS_CHAR( ch, sp, bep, cc ) ; \
128 char *sp; in format_converter() local
166 sp = odp->nextb; in format_converter()
171 INS_CHAR(*fmt, sp, bep, cc); in format_converter()
775 INS_CHAR(*s, sp, bep, cc) in format_converter()
786 INS_CHAR(*s, sp, bep, cc); in format_converter()
804 odp->nextb = sp; in format_converter()
/PHP-7.4/main/
H A Dsnprintf.c529 #define INS_CHAR(c, sp, bep, cc) \ argument
531 if (sp < bep) \
533 *sp++ = c; \
568 INS_CHAR( ch, sp, bep, cc ) ; \
586 char *sp; in format_converter() local
628 sp = odp->nextb; in format_converter()
633 INS_CHAR(*fmt, sp, bep, cc); in format_converter()
1186 INS_CHAR(*s, sp, bep, cc) in format_converter()
1197 INS_CHAR(*s, sp, bep, cc); in format_converter()
1210 odp->nextb = sp; in format_converter()
/PHP-7.4/ext/intl/dateformat/
H A Ddateformat_format_object.cpp201 StringPiece sp(Z_STRVAL_P(format)); in PHP_FUNCTION() local
203 UnicodeString::fromUTF8(sp), in PHP_FUNCTION()
/PHP-7.4/sapi/fpm/fpm/
H A Dfpm_signals.c21 static int sp[2]; variable
180 zend_quiet_write(sp[1], &s, sizeof(s)); in sig_handler()
189 if (0 > socketpair(AF_UNIX, SOCK_STREAM, 0, sp)) { in fpm_signals_init_main()
194 if (0 > fd_set_blocked(sp[0], 0) || 0 > fd_set_blocked(sp[1], 0)) { in fpm_signals_init_main()
199 if (0 > fcntl(sp[0], F_SETFD, FD_CLOEXEC) || 0 > fcntl(sp[1], F_SETFD, FD_CLOEXEC)) { in fpm_signals_init_main()
239 close(sp[0]); in fpm_signals_init_child()
240 close(sp[1]); in fpm_signals_init_child()
264 return sp[0]; in fpm_signals_get_fd()
/PHP-7.4/ext/standard/tests/strings/
H A Dchunk_split_variation6.phpt67 string(74) "This is):( string):( with ):( multi):(ple ):( sp):(ace cha):(r):("
/PHP-7.4/ext/soap/tests/bugs/
H A Dbug50698_1.wsdl79 <sp:Layout>
83 </sp:Layout>
96 </sp:Wss11>
103 </sp:Trust10>
112 <sp:Body/>
120 </sp:SignedParts>
122 <sp:Body/>
131 <sp:Body/>
141 <sp:Body/>
164 <sp:Layout>
[all …]
H A Dbug50698_2.wsdl79 <sp:Layout>
83 </sp:Layout>
96 </sp:Wss11>
103 </sp:Trust10>
112 <sp:Body/>
120 </sp:SignedParts>
122 <sp:Body/>
131 <sp:Body/>
141 <sp:Body/>
164 <sp:Layout>
[all …]
H A Dbug50698_3.wsdl79 <sp:Layout>
83 </sp:Layout>
96 </sp:Wss11>
103 </sp:Trust10>
112 <sp:Body/>
120 </sp:SignedParts>
122 <sp:Body/>
131 <sp:Body/>
141 <sp:Body/>
164 <sp:Layout>
[all …]
H A Dbug50698_4.wsdl79 <sp:Layout>
83 </sp:Layout>
96 </sp:Wss11>
103 </sp:Trust10>
112 <sp:Body/>
120 </sp:SignedParts>
122 <sp:Body/>
131 <sp:Body/>
141 <sp:Body/>
164 <sp:Layout>
[all …]
/PHP-7.4/ext/phar/phar/
H A Dclicommand.inc233 private function cli_wordwrap($what, $l, $sp)
238 $r = str_replace("\n", "\n".$sp, $r); // in remainder replace \n's
239 return $b . wordwrap($r, $p, "\n".$sp);
242 private function cli_help_get_args($func, $l, $sp, $required)
245 foreach(call_user_func($func, $l, $sp) as $arg => $conf) {
258 $inf .= $this->cli_wordwrap($sp . $arg . $conf['inf'], $l2, $sp2) . "\n";
274 return $sp . "Required arguments:\n\n" . $inf;
276 return $sp . "Optional arguments:\n\n". $inf;
322 $sp = str_repeat(' ', $l + 2);
324 $inf = $name . substr($sp, strlen($name));
[all …]
/PHP-7.4/ext/pcre/pcre2lib/
H A Dpcre2_substring.c380 PCRE2_UCHAR *sp; in pcre2_substring_list_get() local
405 sp = (PCRE2_UCHAR *)lensp; in pcre2_substring_list_get()
411 sp = (PCRE2_UCHAR *)((char *)lensp + sizeof(PCRE2_SIZE) * count); in pcre2_substring_list_get()
422 if (size != 0) memcpy(sp, match_data->subject + ovector[i], CU2BYTES(size)); in pcre2_substring_list_get()
423 *listp++ = sp; in pcre2_substring_list_get()
425 sp += size; in pcre2_substring_list_get()
426 *sp++ = 0; in pcre2_substring_list_get()
/PHP-7.4/ext/fileinfo/tests/
H A Dmagic私はガラスを食べられます2265 # From: Peter Soos <sp@osb.hu>
6265 # soh S p f 8 U D sp ^ S cr nl p o d i
6267 # a t r i s t sp ^ S cr nl d i v sp #
10258 # characteristic assembler instructions: xor ax,ax;mov ss,ax;mov sp,7c00
10261 # assembler instructions: mov si,sp;push ax;pop es;push ax;pop ds;sti;cld
10400 # assembler instructions: $0x1f00,%sp;mov $0x80cb,%di;add %cl,(%bx,%si);in (%dx),%ax;mov
11193 # assembler instructions: xor ax,ax;mov ax,ss;mov sp,0x7c00;mov ax,
H A Dmagic2265 # From: Peter Soos <sp@osb.hu>
6265 # soh S p f 8 U D sp ^ S cr nl p o d i
6267 # a t r i s t sp ^ S cr nl d i v sp #
10258 # characteristic assembler instructions: xor ax,ax;mov ss,ax;mov sp,7c00
10261 # assembler instructions: mov si,sp;push ax;pop es;push ax;pop ds;sti;cld
10400 # assembler instructions: $0x1f00,%sp;mov $0x80cb,%di;add %cl,(%bx,%si);in (%dx),%ax;mov
11193 # assembler instructions: xor ax,ax;mov ax,ss;mov sp,0x7c00;mov ax,
/PHP-7.4/ext/dom/tests/
H A Ddom001.phpt193 <!ENTITY sp "spanish">
198 &sp;
200 <informaltable language="&sp;kkk">
254 <!ENTITY sp "spanish">
259 &sp;
261 <informaltable language="&sp;kkk">
H A Ddom_test.inc4 [ <!ENTITY sp \"spanish\">
9 &sp;
11 <informaltable language='&sp;kkk'>
/PHP-7.4/ext/date/tests/
H A DDateTime_data-spring-type2-type3.inc23 $start = new DateTime('2010-02-11 02:18:48 EST'); // sp prev, zt2
47 $end = new DateTime('2010-03-14 00:15:35'); // sp st, zt3
72 $end = new DateTime('2010-03-14 05:19:56'); // sp dt, zt3
98 $start = new DateTime('2010-03-15 18:57:55 EDT'); // sp post, zt2

Completed in 170 milliseconds

12