Home
last modified time | relevance | path

Searched refs:b (Results 176 – 200 of 2383) sorted by last modified time

12345678910>>...96

/PHP-5.5/ext/zlib/tests/
H A Dgzrewind_variation1.phpt13 gzwrite($h, b'The first string.');
15 gzwrite($h, b'The second string.');
H A Dgztell_basic2.phpt18 echo "bytes written=".gzwrite($h, str_repeat(b'1', $size))."\n";;
H A Dgzwrite_variation1.phpt14 $str = b"Here is the string to be written. ";
H A Dob_001.phpt9 a=b
H A Dreadgzfile_basic.phpt9 $plaintxt = b<<<EOT
H A Dreadgzfile_basic2.phpt9 $plaintxt = b<<<EOT
H A Dbug_34821.phpt9 $b = array(
20 foreach ($b as $size) {
H A Dgzfile_basic.phpt9 $plaintxt = b<<<EOT
H A Dgzfile_basic2.phpt9 $plaintxt = b<<<EOT
/PHP-5.5/ext/zip/
H A Dphp_zip.c143 char b[8192]; in php_zip_extract_file() local
277 while ((n=zip_fread(zf, b, sizeof(b))) > 0) { in php_zip_extract_file()
278 php_stream_write(stream, b, n); in php_zip_extract_file()
/PHP-5.5/ext/zip/lib/
H A Dzip_source_pkware.c54 #define CRC32(c, b) (crc[((c) ^ (b)) & 0xff] ^ ((c) >> 8)) argument
114 Bytef b; in decrypt() local
117 b = in[i]; in decrypt()
123 b ^= tmp; in decrypt()
128 out[i] = b; in decrypt()
131 ctx->key[0] = CRC32(ctx->key[0], b); in decrypt()
133 b = ctx->key[1] >> 24; in decrypt()
134 ctx->key[2] = CRC32(ctx->key[2], b); in decrypt()
H A Dzip_source_zip.c123 char b[8192], *buf; in read_zip() local
133 i = (z->off-n > sizeof(b) ? sizeof(b) : z->off-n); in read_zip()
134 if ((i=zip_fread(z->zf, b, i)) < 0) { in read_zip()
H A Dzipint.h68 #define open(a, b, c) _open((a), (b)) argument
H A Dzip_close.c643 _zip_torrentzip_cmp(const void *a, const void *b) in _zip_torrentzip_cmp() argument
646 ((const struct filelist *)b)->name); in _zip_torrentzip_cmp()
/PHP-5.5/ext/xmlwriter/tests/
H A D007.phpt19 xmlwriter_text($xw, 'a&b');
35 …<ns1:child1 ns1:att1="a&amp;b" att2="double&quot; single'" ns1:att2="&lt;&gt;&quot;'&amp;" xmlns:n…
H A DOO_007.phpt20 $xw->text('a&b');
36 …<ns1:child1 ns1:att1="a&amp;b" att2="double&quot; single'" ns1:att2="&lt;&gt;&quot;'&amp;" xmlns:n…
/PHP-5.5/ext/xmlrpc/tests/
H A Dbug50285.phpt17 return array('One', 3 => 'Three', b'Five' => 5, 'Six');
21 return array('One', 'Three', 'Five', b'Six' => 6);
/PHP-5.5/ext/xmlrpc/libxmlrpc/
H A Dbase64.c26 b->data = malloc(sizeof(char)*(b->length)); in buffer_new()
27 b->data[0] = 0; in buffer_new()
28 b->ptr = b->data; in buffer_new()
29 b->offset = 0; in buffer_new()
35 b->offset++; in buffer_add()
36 if (b->offset == b->length) { in buffer_add()
38 b->data = realloc(b->data, b->length); in buffer_add()
39 b->ptr = b->data + b->offset; in buffer_add()
180 o[0] = (b[0] << 2) | (b[1] >> 4); in base64_decode_xmlrpc()
181 o[1] = (b[1] << 4) | (b[2] >> 2); in base64_decode_xmlrpc()
[all …]
H A Dbase64.h20 void buffer_new(struct buffer_st *b);
21 void buffer_add(struct buffer_st *b, char c);
22 void buffer_delete(struct buffer_st *b);
24 void base64_encode_xmlrpc(struct buffer_st *b, const char *source, int length);
25 void base64_decode_xmlrpc(struct buffer_st *b, const char *source, int length);
/PHP-5.5/ext/xmlreader/tests/
H A Dbug51936.phpt12 $xmlreader->xml("<a><b/></a>");
H A D005.phpt18 $b = $reader->getParserProperty(XMLReader::LOADDTD);
20 if (!$a && !$b) {
25 $b = $reader->getParserProperty(XMLReader::SUBST_ENTITIES);
27 if ($a && $b) {
/PHP-5.5/ext/wddx/
H A Dwddx.c65 #define php_wddx_deserialize(a,b) \ argument
66 php_wddx_deserialize_ex((a)->value.str.val, (a)->value.str.len, (b))
/PHP-5.5/ext/xml/tests/
H A Dbug30266.phpt35 $this->dummy = "b";
H A Dxml010.phpt25 <bar:b foo="bar"/>
38 http://example.com/bar@b foo = bar
/PHP-5.5/ext/tokenizer/tests/
H A Dtoken_get_all_variation10.phpt24 $b = 0;
28 '<?php $a = 1 + 034; $b = $a + 0x3F; ?>',
37 "<?php \$a = (\$b)? true : false; ?>",
38 "<?php \$b = (\$a)? FALSE : TRUE; ?>",
41 '<?php $b = null | NULL; ?>'
146 string(2) "$b"
485 string(2) "$b"
577 string(2) "$b"
700 string(2) "$b"

Completed in 50 milliseconds

12345678910>>...96