Home
last modified time | relevance | path

Searched refs:bp (Results 1 – 16 of 16) sorted by path

/PHP-5.5/Zend/
H A Dzend_compile.c653 void fetch_simple_variable_ex(znode *result, znode *varname, int bp, zend_uchar op TSRMLS_DC) /* {{… in fetch_simple_variable_ex() argument
680 if (bp) { in fetch_simple_variable_ex()
702 if (bp) { in fetch_simple_variable_ex()
709 void fetch_simple_variable(znode *result, znode *varname, int bp TSRMLS_DC) /* {{{ */ in fetch_simple_variable()
712 fetch_simple_variable_ex(result, varname, bp, ZEND_FETCH_W TSRMLS_CC); in fetch_simple_variable()
H A Dzend_compile.h456 void fetch_simple_variable(znode *result, znode *varname, int bp TSRMLS_DC);
457 void fetch_simple_variable_ex(znode *result, znode *varname, int bp, zend_uchar op TSRMLS_DC);
H A Dzend_static_allocator.c27 block->pos = block->bp = (char *) emalloc(block_size); in block_init()
28 block->end = block->bp + block_size; in block_init()
42 efree(block->bp); in block_destroy()
H A Dzend_static_allocator.h32 char *bp; member
/PHP-5.5/ext/filter/tests/
H A D040.phpt8 ap[]=1&bp=test&cp=
/PHP-5.5/ext/gd/libgd/
H A Dgd_color.c18 unsigned long *bp; /* buf ptr */ in gdImageColorMatch() local
43 bp = buf + (color * 5); in gdImageColorMatch()
44 (*(bp++))++; in gdImageColorMatch()
45 *(bp++) += gdTrueColorGetRed(rgb); in gdImageColorMatch()
46 *(bp++) += gdTrueColorGetGreen(rgb); in gdImageColorMatch()
47 *(bp++) += gdTrueColorGetBlue(rgb); in gdImageColorMatch()
51 bp = buf; in gdImageColorMatch()
53 count = *(bp++); in gdImageColorMatch()
55 im2->red[color] = *(bp++) / count; in gdImageColorMatch()
57 im2->blue[color] = *(bp++) / count; in gdImageColorMatch()
[all …]
/PHP-5.5/ext/hash/
H A Dhash_fnv.c153 unsigned char *bp = (unsigned char *)buf; /* start of buffer */ in fnv_32_buf() local
154 unsigned char *be = bp + len; /* beyond end of buffer */ in fnv_32_buf()
159 while (bp < be) { in fnv_32_buf()
166 hval ^= (php_hash_uint32)*bp++; in fnv_32_buf()
169 hval ^= (php_hash_uint32)*bp++; in fnv_32_buf()
195 unsigned char *bp = (unsigned char *)buf; /* start of buffer */ in fnv_64_buf() local
196 unsigned char *be = bp + len; /* beyond end of buffer */ in fnv_64_buf()
201 while (bp < be) { in fnv_64_buf()
208 hval ^= (php_hash_uint64)*bp++; in fnv_64_buf()
211 hval ^= (php_hash_uint64)*bp++; in fnv_64_buf()
/PHP-5.5/ext/mbstring/oniguruma/
H A Dregcomp.c5829 bp++; in onig_print_compiled_byte_code()
5872 p_string(f, 2, bp); bp += 2; break; in onig_print_compiled_byte_code()
5874 p_string(f, 3, bp); bp += 3; break; in onig_print_compiled_byte_code()
5876 p_string(f, 4, bp); bp += 4; break; in onig_print_compiled_byte_code()
5878 p_string(f, 5, bp); bp += 5; break; in onig_print_compiled_byte_code()
5886 p_string(f, 2, bp); bp += 2; break; in onig_print_compiled_byte_code()
5888 p_string(f, 4, bp); bp += 4; break; in onig_print_compiled_byte_code()
5890 p_string(f, 6, bp); bp += 6; break; in onig_print_compiled_byte_code()
5939 q = bp; in onig_print_compiled_byte_code()
5953 q = bp; in onig_print_compiled_byte_code()
[all …]
H A Dregerror.c331 UChar *p, *s, *bp; local
367 bp = bs;
368 while (blen-- > 0) *s++ = *bp++;
376 bp = bs;
377 while (len-- > 0) *s++ = *bp++;
H A Dregexec.c1296 UChar *q, *bp, buf[50]; in match_at() local
1299 bp = buf; in match_at()
1302 while (len-- > 0) *bp++ = *q++; in match_at()
1304 if (q < end) { xmemcpy(bp, "...\"", 4); bp += 4; } in match_at()
1305 else { xmemcpy(bp, "\"", 1); bp += 1; } in match_at()
1306 *bp = 0; in match_at()
1308 for (i = 0; i < 20 - (bp - buf); i++) fputc(' ', stderr); in match_at()
H A Dregint.h763 extern void onig_print_compiled_byte_code P_((FILE* f, UChar* bp, UChar** nextp, OnigEncoding enc));
/PHP-5.5/ext/pgsql/
H A Dpgsql.c4259 *bp; local
4267 for (bp = buffer, sp = strtext; *sp != '\0'; bp++, sp++)
4274 *bp = *sp;
4279 bp--;
4280 *bp = '\'';
4286 bp--;
4287 *bp = '\\';
4297 *bp = *sp;
4305 *bp = *sp;
4312 bp -= 3;
[all …]
/PHP-5.5/ext/phar/tests/cache_list/files/
H A Dwrite17.phar8 6���������������������test.txt������H������E�������<?php __HALT_COMPILER();~�bp�DZNu��@.�…
/PHP-5.5/ext/standard/
H A Dstrnatcmp.c105 char const *ap, *bp; in strnatcmp_ex() local
115 bp = b; in strnatcmp_ex()
117 ca = *ap; cb = *bp; in strnatcmp_ex()
124 while (leading && cb == '0' && (bp+1 < bend) && isdigit((int)(unsigned char)*(bp+1))) { in strnatcmp_ex()
125 cb = *++bp; in strnatcmp_ex()
136 cb = *++bp; in strnatcmp_ex()
150 else if (ap == aend && bp == bend) in strnatcmp_ex()
155 ca = *ap; cb = *bp; in strnatcmp_ex()
169 ++ap; ++bp; in strnatcmp_ex()
170 if (ap >= aend && bp >= bend) in strnatcmp_ex()
[all …]
/PHP-5.5/ext/standard/tests/general_functions/
H A Dimport_request.phpt8 ap=25&bp=test&cp=blah3&dp[]=ar
/PHP-5.5/ext/tidy/
H A Dtidy.c611 php_error_docref(NULL TSRMLS_CC, E_WARNING, "%s", errbuf->bp); in php_tidy_quick_repair()
620 RETVAL_STRINGL((char *) output.bp, output.size ? output.size-1 : 0, 1); in php_tidy_quick_repair()
767 ZVAL_STRINGL(out, (char *) output.bp, output.size ? output.size-1 : 0, 1); in tidy_doc_cast_handler()
801 ZVAL_STRINGL(out, (char *) buf.bp, buf.size-1, 1); in tidy_node_cast_handler()
829 ZVAL_STRINGL(temp, (char*)output.bp, output.size-1, TRUE); in tidy_doc_update_properties()
840 ZVAL_STRINGL(temp, (char*)obj->ptdoc->errbuf->bp, obj->ptdoc->errbuf->size-1, TRUE); in tidy_doc_update_properties()
1058 php_error_docref(NULL TSRMLS_CC, E_WARNING, "%s", obj->ptdoc->errbuf->bp); in php_tidy_parse_string()
1200 output_context->out.data = (char *) outbuf.bp; in php_tidy_output_handler()
1246 if (obj->ptdoc->errbuf && obj->ptdoc->errbuf->bp) { in PHP_FUNCTION()
1247 RETURN_STRINGL((char*)obj->ptdoc->errbuf->bp, obj->ptdoc->errbuf->size-1, 1); in PHP_FUNCTION()
[all …]

Completed in 85 milliseconds