Home
last modified time | relevance | path

Searched refs:x0 (Results 1 – 25 of 57) sorted by path

123

/php-src/Zend/
H A DZend.m4106 cw = (oldcw & ~0x0 & ~0x300) | 0x200;
H A Dzend_strtod.c1760 ULong *x, *x0, x1, x2; local
1774 x0 = x;
1776 while(x > x0)
/php-src/Zend/asm/
H A Djump_arm64_aapcs_elf_gas.S84 mov sp, x0
103 mov x0, x4
H A Djump_arm64_aapcs_macho_gas.S82 mov sp, x0
101 mov x0, x4
H A Djump_arm64_aapcs_pe_armasm.asm96 mov sp, x0
123 mov x0, x4
H A Dmake_arm64_aapcs_elf_gas.S60 # shift address in x0 (allocated stack) to lower 16 byte boundary
61 and x0, x0, ~0xF
64 sub x0, x0, #0xb0
68 str x2, [x0, #0xa0]
73 str x1, [x0, #0x98]
79 mov x0, #0
H A Dmake_arm64_aapcs_macho_gas.S59 ; shift address in x0 (allocated stack) to lower 16 byte boundary
60 and x0, x0, ~0xF
63 sub x0, x0, #0xb0
67 str x2, [x0, #0xa0]
73 str x1, [x0, #0x98]
75 ret lr ; return pointer to context-data (x0)
79 mov x0, #0
H A Dmake_arm64_aapcs_pe_armasm.asm66 mov x3, x0
69 and x0, x0, ~0xF
72 sub x0, x0, #0xd0
75 str x3, [x0, #0xa0]
78 stp x3, x3, [x0, #0xa8]
80 str xzr, [x0, #0xb8]
84 str x2, [x0, #0x40]
87 str x2, [x0, #0xc0]
92 str x1, [x0, #0x98]
94 ret x30 ; return pointer to context-data (x0)
[all …]
/php-src/Zend/tests/
H A Dbug35239.phpt6 $a->x0 = new stdClass;
7 $a->x0->y0 = 'a';
8 $a->x0->y1 =& $a->x0;
9 $a->x0->y2 =& $a->x0;
10 $a->x0->y0 = 'b';
12 $a->x0->y1 = "ok\n";
13 echo $a->x0;
17 ["x0"]=>
/php-src/Zend/tests/numeric_strings/
H A Dneg_num_string.phpt11 "0x0" => 5,
12 "-0x0" => 6,
25 var_dump("$a[0x0]");
26 var_dump("$a[-0x0]");
/php-src/build/
H A Dpkg.m4111 test "x$?" != "x0" && pkg_failed=yes ],
/php-src/ext/date/tests/
H A Dlocaltime_variation5.phpt14 'Hexa-decimal 0' => 0x0,
/php-src/ext/dom/tests/
H A Dbug69679.phpt8 $html = "<!DOCTYPE html><html><head><meta charset='UTF-8'></head><body>U+0000 <span>\x0</span></bod…
H A Dbug80268_2.phpt27 Warning: DOMDocument::loadHTML(): Char 0x0 out of allowed range in Entity, line: 1 in %s on line %d
30 Warning: DOMDocument::loadHTMLFile(): Char 0x0 out of allowed range in %s on line %d
/php-src/ext/fileinfo/tests/
H A Dmagic3229 >>>>0x0 ubyte <64
7198 0 string C64\x20tape\x20image\x20file\x0\x0\x0\x0\x0\x0\x0\x0\x0\x0\x0\x0 T64 tape Image
7203 0 string C64S\x20tape\x20image\x20file\x0\x0\x0\x0\x0\x0\x0\x0\x0\x0\x0 T64 tape Image
9390 >0x0004 ulelong =0x0
9391 >>&2 ulelong =0x0
14653 0 string DAA\x0\x0\x0\x0\x0 PowerISO Direct-Access-Archive
20938 >>>>4 ulelong 0x0
27057 >>&0xf4 search/0x140 \x0\x40\x1\x0
27538 >>>>3 ubyte !0x0
30065 >>88 ubequad 0x0
[all …]
H A Dmagic私はガラスを食べられます3229 >>>>0x0 ubyte <64
7198 0 string C64\x20tape\x20image\x20file\x0\x0\x0\x0\x0\x0\x0\x0\x0\x0\x0\x0 T64 tape Image
7203 0 string C64S\x20tape\x20image\x20file\x0\x0\x0\x0\x0\x0\x0\x0\x0\x0\x0 T64 tape Image
9390 >0x0004 ulelong =0x0
9391 >>&2 ulelong =0x0
14653 0 string DAA\x0\x0\x0\x0\x0 PowerISO Direct-Access-Archive
20938 >>>>4 ulelong 0x0
27057 >>&0xf4 search/0x140 \x0\x40\x1\x0
27538 >>>>3 ubyte !0x0
30065 >>88 ubequad 0x0
[all …]
/php-src/ext/gd/libgd/
H A Dgd.c684 static int clip_1d(int *x0, int *y0, int *x1, int *y1, int maxdim) { in clip_1d() argument
687 if (*x0 < 0) { /* start of line is left of window */ in clip_1d()
691 m = (*y1 - *y0)/(double)(*x1 - *x0); /* calculate the slope of the line */ in clip_1d()
693 *y0 -= (int)(m * *x0); in clip_1d()
694 *x0 = 0; in clip_1d()
702 if (*x0 > maxdim) { /* start of line is right of window - complement of above */ in clip_1d()
706 m = (*y1 - *y0)/(double)(*x1 - *x0); /* calculate the slope of the line */ in clip_1d()
707 *y0 += (int)(m * (maxdim - *x0)); /* adjust so point is on the right boundary */ in clip_1d()
708 *x0 = maxdim; in clip_1d()
718 m = (*y1 - *y0)/(double)(*x1 - *x0); /* calculate the slope of the line */ in clip_1d()
[all …]
/php-src/ext/gd/tests/
H A Dcolorat.phpt11 imagesetpixel($im, 3,3, 0x0);
16 echo $c == 0x0 ? 'ok' : 'failed';
H A Dcreatefromstring.phpt15 imagesetpixel($im, 3,3, 0x0);
21 if (imagecolorat($im, 3,3) != 0x0) {
H A Dcreatefromwbmp-mb.phpt11 echo imagecolorat($im2, 3,3) == 0x0 ? 'ok' : 'failed';
H A Dcreatefromwbmp.phpt11 echo imagecolorat($im2, 3,3) == 0x0 ? 'ok' : 'failed';
H A Dimagecolorallocate_variation5.phpt30 "Hexa-decimal 0x0" => 0x0,
70 --Hexa-decimal 0x0--
H A Dimagecrop_auto.phpt61 $im_crop = imagecropauto($im, IMG_CROP_THRESHOLD, 0.1, 0x0);
H A Dimagewbmp-mb.phpt11 imagesetpixel($im, 3,3, 0x0);
H A Dimagewbmp.phpt11 imagesetpixel($im, 3,3, 0x0);

Completed in 223 milliseconds

123