Home
last modified time | relevance | path

Searched refs:dst (Results 1 – 25 of 74) sorted by relevance

123

/PHP-5.4/ext/pcre/pcrelib/sljit/
H A DsljitNativeSPARC_32.c30 return push_inst(compiler, OR | D(dst) | S1(0) | IMM(imm), DR(dst)); in load_immediate()
33 …return (imm & 0x3ff) ? push_inst(compiler, OR | D(dst) | S1(dst) | IMM_ARG | (imm & 0x3ff), DR(dst in load_immediate()
49 if (dst != src2) in emit_single_op()
50 return push_inst(compiler, OR | D(dst) | S1(0) | S2(src2), DR(dst)); in emit_single_op()
59 FAIL_IF(push_inst(compiler, SLL | D(dst) | S1(src2) | IMM(24), DR(dst))); in emit_single_op()
60 return push_inst(compiler, SRA | D(dst) | S1(dst) | IMM(24), DR(dst)); in emit_single_op()
62 else if (dst != src2) in emit_single_op()
70 FAIL_IF(push_inst(compiler, SLL | D(dst) | S1(src2) | IMM(16), DR(dst))); in emit_single_op()
71 …return push_inst(compiler, (op == SLJIT_MOV_SH ? SRA : SRL) | D(dst) | S1(dst) | IMM(16), DR(dst)); in emit_single_op()
88 FAIL_IF(push_inst(compiler, OR | D(dst) | S1(0) | IMM(-1), DR(dst))); in emit_single_op()
[all …]
H A DsljitNativeMIPS_32.c88 return push_inst(compiler, SEB | T(src2) | D(dst), DR(dst)); in emit_single_op()
91 return push_inst(compiler, SRA | T(dst) | D(dst) | SH_IMM(24), DR(dst)); in emit_single_op()
106 return push_inst(compiler, SEH | T(src2) | D(dst), DR(dst)); in emit_single_op()
109 return push_inst(compiler, SRA | T(dst) | D(dst) | SH_IMM(16), DR(dst)); in emit_single_op()
132 FAIL_IF(push_inst(compiler, CLZ | S(src2) | T(dst) | D(dst), DR(dst))); in emit_single_op()
145 FAIL_IF(push_inst(compiler, ADDIU | S(dst) | T(dst) | IMM(1), DR(dst))); in emit_single_op()
217 FAIL_IF(push_inst(compiler, ADDU | S(dst) | TA(ULESS_FLAG) | D(dst), DR(dst))); in emit_single_op()
296 FAIL_IF(push_inst(compiler, SUBU | S(dst) | TA(ULESS_FLAG) | D(dst), DR(dst))); in emit_single_op()
306 return push_inst(compiler, MFLO | D(dst), DR(dst)); in emit_single_op()
311 FAIL_IF(push_inst(compiler, MFLO | D(dst), DR(dst))); in emit_single_op()
[all …]
H A DsljitNativePPC_32.c41 #define INS_CLEAR_LEFT(dst, src, from) \ argument
42 (RLWINM | S(src) | A(dst) | ((from) << 6) | (31 << 1))
45 sljit_si dst, sljit_si src1, sljit_si src2) in emit_single_op() argument
53 if (dst != src2) in emit_single_op()
62 return push_inst(compiler, EXTSB | S(src2) | A(dst)); in emit_single_op()
66 return push_inst(compiler, EXTSB | S(src2) | A(dst)); in emit_single_op()
68 SLJIT_ASSERT(dst == src2); in emit_single_op()
81 SLJIT_ASSERT(dst == src2); in emit_single_op()
115 …return push_inst(compiler, ADDIS | D(dst) | A(dst) | (((compiler->imm >> 16) & 0xffff) + ((compile… in emit_single_op()
194 return push_inst(compiler, ORIS | S(dst) | A(dst) | IMM(compiler->imm >> 16)); in emit_single_op()
[all …]
H A DsljitNativeMIPS_64.c179 return push_inst(compiler, DSRA32 | T(dst) | D(dst) | SH_IMM(24), DR(dst)); in emit_single_op()
193 return push_inst(compiler, DSRA32 | T(dst) | D(dst) | SH_IMM(16), DR(dst)); in emit_single_op()
204 return push_inst(compiler, DSRL32 | T(dst) | D(dst) | SH_IMM(0), DR(dst)); in emit_single_op()
224 FAIL_IF(push_inst(compiler, SELECT_OP(DCLZ, CLZ) | S(src2) | T(dst) | D(dst), DR(dst))); in emit_single_op()
237 FAIL_IF(push_inst(compiler, SELECT_OP(DADDIU, ADDIU) | S(dst) | T(dst) | IMM(1), DR(dst))); in emit_single_op()
398 return push_inst(compiler, MFLO | D(dst), DR(dst)); in emit_single_op()
442 FAIL_IF(push_inst(compiler, ORI | S(dst) | T(dst) | IMM(init_value >> 32), DR(dst))); in emit_const()
443 FAIL_IF(push_inst(compiler, DSLL | T(dst) | D(dst) | SH_IMM(16), DR(dst))); in emit_const()
444 FAIL_IF(push_inst(compiler, ORI | S(dst) | T(dst) | IMM(init_value >> 16), DR(dst))); in emit_const()
445 FAIL_IF(push_inst(compiler, DSLL | T(dst) | D(dst) | SH_IMM(16), DR(dst))); in emit_const()
[all …]
H A DsljitNativePPC_64.c30 #define ASM_SLJIT_CLZ(src, dst) \ argument
38 #define RLDI(dst, src, sh, mb, type) \ argument
120 #define INS_CLEAR_LEFT(dst, src, from) \ argument
149 sljit_si dst, sljit_si src1, sljit_si src2) in emit_single_op() argument
155 if (dst != src2) in emit_single_op()
168 SLJIT_ASSERT(dst == src2); in emit_single_op()
183 SLJIT_ASSERT(dst == src2); in emit_single_op()
196 SLJIT_ASSERT(dst == src2); in emit_single_op()
235 …return push_inst(compiler, ADDIS | D(dst) | A(dst) | (((compiler->imm >> 16) & 0xffff) + ((compile… in emit_single_op()
321 return push_inst(compiler, ORIS | S(dst) | A(dst) | IMM(compiler->imm >> 16)); in emit_single_op()
[all …]
H A DsljitNativeX86_common.c897 dst_r = FAST_IS_REG(dst) ? dst : TMP_REG1; in emit_mov_byte()
1039 dst_r = FAST_IS_REG(dst) ? dst : TMP_REG1; in emit_mov_half()
1189 dst_r = FAST_IS_REG(dst) ? dst : TMP_REG2; in emit_clz()
1616 if (FAST_IS_REG(dst) && dst != src2) {
1652 dst_r = FAST_IS_REG(dst) ? dst : TMP_REG1;
1790 dst_r = FAST_IS_REG(dst) ? dst : TMP_REG1;
2046 else if (FAST_IS_REG(dst) && dst != src2 && !ADDRESSING_DEPENDS_ON(src2, dst)) {
2316 sljit_si dst_r = SLOW_IS_REG(dst) ? dst : TMP_REG1;
2338 sljit_si dst_r = FAST_IS_REG(dst) ? dst : TMP_FREG;
2404 dst_r = FAST_IS_REG(dst) ? dst : TMP_FREG;
[all …]
H A DsljitNativeARM_T2_32.c688 if (dst == arg2) in emit_op_imm()
736 if (dst == arg1 && !(flags & KEEP_FLAGS) && IS_2_LO_REGS(dst, arg2)) in emit_op_imm()
744 if (dst == arg1 && !(flags & KEEP_FLAGS) && IS_2_LO_REGS(dst, arg2)) in emit_op_imm()
756 if (dst == arg1 && IS_2_LO_REGS(dst, arg2)) in emit_op_imm()
1297 dst_r = SLOW_IS_REG(dst) ? dst : TMP_REG1; in sljit_emit_op1()
1431 dst_r = SLOW_IS_REG(dst) ? dst : TMP_REG1; in sljit_emit_op2()
1622 sljit_si dst_r = FAST_IS_REG(dst) ? dst : TMP_FREG1; in sljit_emit_fop1_convd_fromw()
1675 dst_r = FAST_IS_REG(dst) ? dst : TMP_FREG1; in sljit_emit_fop1()
1725 dst_r = FAST_IS_REG(dst) ? dst : TMP_FREG1; in sljit_emit_fop2()
1961 dst_r = FAST_IS_REG(dst) ? dst : TMP_REG2; in sljit_emit_op_flags()
[all …]
H A DsljitNativeARM_64.c215 sljit_si dst; in sljit_generate_code() local
512 dst = TMP_ZERO; \
667 if (dst == arg2) in emit_op_imm()
1271 dst_r = SLOW_IS_REG(dst) ? dst : TMP_REG1; in sljit_emit_op1()
1424 dst_r = SLOW_IS_REG(dst) ? dst : TMP_REG1; in sljit_emit_op2()
1585 sljit_si dst_r = SLOW_IS_REG(dst) ? dst : TMP_REG1; in sljit_emit_fop1_convw_fromd()
1607 sljit_si dst_r = FAST_IS_REG(dst) ? dst : TMP_FREG1; in sljit_emit_fop1_convd_fromw()
1667 dst_r = FAST_IS_REG(dst) ? dst : TMP_FREG1; in sljit_emit_fop1()
1716 dst_r = FAST_IS_REG(dst) ? dst : TMP_FREG1; in sljit_emit_fop2()
1962 dst_r = FAST_IS_REG(dst) ? dst : TMP_REG1; in sljit_emit_op_flags()
[all …]
H A DsljitNativeTILEGX_64.c414 #define CLZ(dst, src) \ argument
456 #define LD(dst, addr) \ argument
1628 if (dst != src2) in emit_single_op()
1724 if (src1 != dst) in emit_single_op()
1784 FAIL_IF(ADD(reg_map[dst], reg_map[dst], ULESS_FLAG)); in emit_single_op()
1809 if (src1 != dst) in emit_single_op()
1837 if (src1 != dst) in emit_single_op()
1899 FAIL_IF(SUB(reg_map[dst], reg_map[dst], ULESS_FLAG)); in emit_single_op()
2000 dst_r = dst; in emit_op()
2186 if (dst & SLJIT_MEM) in sljit_emit_op_flags()
[all …]
H A DsljitNativeSPARC_common.c656 dst_r = dst; in emit_op()
980 sljit_si dst_r = FAST_IS_REG(dst) ? (dst << 1) : TMP_FREG1; in sljit_emit_fop1_convd_fromw()
1001 if (dst & SLJIT_MEM) in sljit_emit_fop1_convd_fromw()
1043 dst_r = FAST_IS_REG(dst) ? (dst << 1) : TMP_FREG1; in sljit_emit_fop1()
1080 if (dst & SLJIT_MEM) in sljit_emit_fop1()
1101 dst_r = FAST_IS_REG(dst) ? (dst << 1) : TMP_FREG2; in sljit_emit_fop2()
1184 if (FAST_IS_REG(dst)) in sljit_emit_fast_enter()
1185 return push_inst(compiler, OR | D(dst) | S1(0) | S2(TMP_LINK), DR(dst)); in sljit_emit_fast_enter()
1381 reg = (op < SLJIT_ADD && FAST_IS_REG(dst)) ? dst : TMP_REG2; in sljit_emit_op_flags()
1423 reg = SLOW_IS_REG(dst) ? dst : TMP_REG2; in sljit_emit_const()
[all …]
H A DsljitNativePPC_common.c1144 dst_r = dst; in emit_op()
1767 dst = 0; in sljit_emit_fop1_convw_fromd()
1785 sljit_si dst_r = FAST_IS_REG(dst) ? dst : TMP_FREG1; in sljit_emit_fop1_convd_fromw()
1810 if (dst & SLJIT_MEM) in sljit_emit_fop1_convd_fromw()
1818 sljit_si dst_r = FAST_IS_REG(dst) ? dst : TMP_FREG1; in sljit_emit_fop1_convd_fromw()
1848 if (dst & SLJIT_MEM) in sljit_emit_fop1_convd_fromw()
1890 dst_r = FAST_IS_REG(dst) ? dst : TMP_FREG1; in sljit_emit_fop1()
1942 dst_r = FAST_IS_REG(dst) ? dst : TMP_FREG2; in sljit_emit_fop2()
2211 FAIL_IF(push_inst(compiler, XORI | S(dst) | A(dst) | 0x1));
2230 reg = (op < SLJIT_ADD && FAST_IS_REG(dst)) ? dst : TMP_REG2; in sljit_emit_op_flags()
[all …]
H A DsljitNativeARM_32.c994 if (dst != src2) { in emit_single_op()
1088 if (dst != src2) in emit_single_op()
1629 dst_r = dst; in emit_op()
2117 sljit_si dst_r = FAST_IS_REG(dst) ? dst : TMP_FREG1; in sljit_emit_fop1_convd_fromw()
2132 if (dst & SLJIT_MEM) in sljit_emit_fop1_convd_fromw()
2170 dst_r = FAST_IS_REG(dst) ? dst : TMP_FREG1; in sljit_emit_fop1()
2198 if (dst & SLJIT_MEM) in sljit_emit_fop1()
2220 dst_r = FAST_IS_REG(dst) ? dst : TMP_FREG1; in sljit_emit_fop2()
2481 dst_r = FAST_IS_REG(dst) ? dst : TMP_REG2; in sljit_emit_op_flags()
2528 reg = SLOW_IS_REG(dst) ? dst : TMP_REG2; in sljit_emit_const()
[all …]
/PHP-5.4/ext/gd/libgd/
H A Dgd_rotate.c46 if (i < dst->sx) { in gdImageSkewX()
209 gdImagePtr dst; in gdImageRotate90() local
239 gdImageSetPixel(dst, uY, (dst->sy - uX - 1), dst->transparent); in gdImageRotate90()
241 gdImageSetPixel(dst, uY, (dst->sy - uX - 1), c); in gdImageRotate90()
248 return dst; in gdImageRotate90()
287 gdImageSetPixel(dst, (dst->sx - uX - 1), (dst->sy - uY - 1), dst->transparent); in gdImageRotate180()
289 gdImageSetPixel(dst, (dst->sx - uX - 1), (dst->sy - uY - 1), c); in gdImageRotate180()
296 return dst; in gdImageRotate180()
335 gdImageSetPixel(dst, (dst->sx - uY - 1), uX, dst->transparent); in gdImageRotate270()
337 gdImageSetPixel(dst, (dst->sx - uY - 1), uX, c); in gdImageRotate270()
[all …]
/PHP-5.4/ext/bcmath/libbcmath/
H A Dinstall-sh42 dst=""
88 dst=$1
104 dst=$src
107 if [ -d $dst ]; then
126 if [ x"$dst" = x ]
137 if [ -d $dst ]
139 dst="$dst"/`basename $src`
182 $doit $instcmd $dst &&
194 dstfile=`basename $dst`
196 dstfile=`basename $dst $transformbasename |
[all …]
/PHP-5.4/ext/date/tests/
H A D010.phpt14 ["dst"]=>
23 ["dst"]=>
32 ["dst"]=>
41 ["dst"]=>
50 ["dst"]=>
59 ["dst"]=>
H A Dbug30096.phpt7 echo "no dst --> dst\n";
14 echo "\ndst --> no dst\n";
38 no dst --> dst
44 dst --> no dst
H A Dtimezone_abbreviations_list_basic1.phpt6 * Description: Returns associative array containing dst, offset and the timezone name
35 ["dst"]=>
44 ["dst"]=>
53 ["dst"]=>
62 ["dst"]=>
H A DDateTimeZone_listAbbreviations_basic1.phpt6 * Description: Returns associative array containing dst, offset and the timezone name
35 ["dst"]=>
44 ["dst"]=>
53 ["dst"]=>
62 ["dst"]=>
/PHP-5.4/ext/date/lib/
H A Dunixtime2tm.c130 tm->dst = 0; in timelib_unixtime2gmt()
141 signed int dst = tm->dst; in timelib_update_from_sse() local
148 timelib_unixtime2gmt(tm, tm->sse - (tm->z * 60) + (tm->dst * 3600)); in timelib_update_from_sse()
172 tm->dst = dst; in timelib_update_from_sse()
184 signed int dst = tm->dst; in timelib_unixtime2local() local
186 timelib_unixtime2gmt(tm, ts - (tm->z * 60) + (tm->dst * 3600)); in timelib_unixtime2local()
189 tm->dst = dst; in timelib_unixtime2local()
199 tm->dst = gmt_offset->is_dst; in timelib_unixtime2local()
227 t->dst = 0; in timelib_set_timezone_from_offset()
241 t->dst = abbr_info.dst; in timelib_set_timezone_from_abbr()
[all …]
H A Dinterval.c64 if (one_backup.dst == 0 && two_backup.dst == 1 && two->sse >= one->sse + 86400 - dst_corr) { in timelib_diff()
74 if (one_backup.dst == 1 && two_backup.dst == 0 && two->sse >= one->sse + 86400) { in timelib_diff()
117 if (old_time->dst == 1 && t->dst == 0 && !interval->y && !interval->m && !interval->d) { in timelib_add()
150 if (old_time->dst == 1 && t->dst == 0 && !interval->y && !interval->m && !interval->d) { in timelib_sub()
155 if (old_time->dst == 0 && t->dst == 1 && !interval->y && !interval->m && !interval->d ) { in timelib_sub()
/PHP-5.4/ext/filter/tests/
H A D049.phpt18 foreach ($test as $src => $dst) {
20 if ($dst !== $out) {
22 echo "$src -> false != $dst\n";
23 } elseif ($dst === false) {
26 echo "$src -> $out != $dst\n";
H A D050.phpt13 foreach ($test as $src => $dst) {
15 if ($dst !== $out) {
17 echo "$src -> false != $dst\n";
18 } elseif ($dst === false) {
21 echo "$src -> $out != $dst\n";
/PHP-5.4/win32/
H A Dinet.c10 PHPAPI int inet_pton(int af, const char* src, void* dst) in inet_pton() argument
33 memcpy (dst, &sin->sin_addr, sizeof (struct in_addr)); in inet_pton()
37 memcpy (dst, &sin6->sin6_addr, sizeof (struct in6_addr)); in inet_pton()
46 PHPAPI const char* inet_ntop(int af, const void* src, char* dst, size_t size) in inet_ntop() argument
72 if (WSAAddressToString ((LPSOCKADDR) &sa, address_length, NULL, dst, &string_length) == 0) { in inet_ntop()
73 return dst; in inet_ntop()
/PHP-5.4/main/
H A Dstrlcat.c67 PHPAPI size_t php_strlcat(dst, src, siz) in php_strlcat() argument
68 char *dst; in php_strlcat()
72 register char *d = dst;
80 dlen = d - dst;
/PHP-5.4/sapi/fpm/fpm/
H A Dfpm_str.h8 static inline char *str_purify_filename(char *dst, char *src, size_t size) /* {{{ */ in str_purify_filename() argument
12 d = dst; in str_purify_filename()
13 end = dst + size - 1; in str_purify_filename()

Completed in 109 milliseconds

123