Home
last modified time | relevance | path

Searched refs:target (Results 1 – 25 of 126) sorted by relevance

123456

/PHP-7.1/ext/xmlrpc/libxmlrpc/
H A Dsimplestring.c199 if(target && source) { in simplestring_addn()
200 if(!target->str) { in simplestring_addn()
204 if((SIZE_MAX - add_len) < target->len || (SIZE_MAX - add_len - 1) < target->len) { in simplestring_addn()
209 if(target->len + add_len + 1 > target->size) { in simplestring_addn()
222 target->str = (char*)realloc(target->str, newsize); in simplestring_addn()
224 target->size = target->str ? newsize : 0; in simplestring_addn()
227 if(target->str) { in simplestring_addn()
229 memcpy(target->str + target->len, source, add_len); in simplestring_addn()
231 target->len += add_len; in simplestring_addn()
232 target->str[target->len] = 0; /* null terminate */ in simplestring_addn()
[all …]
/PHP-7.1/ext/opcache/Optimizer/
H A Dpass3.c40 #define CHECK_JMP(target, label) \ argument
48 #define CHECK_JMP2(target, label) \ argument
181 CHECK_JMP(target, done_jmp_optimization); in zend_optimizer_pass3()
194 if (target->opcode == ZEND_JMP) { in zend_optimizer_pass3()
210 if (target->opcode == ZEND_JMP) { in zend_optimizer_pass3()
274 SAME_VAR(target->op1, T)) { in zend_optimizer_pass3()
276 if (target->opcode == opline->opcode) { in zend_optimizer_pass3()
278 COPY_NODE(T, target->result); in zend_optimizer_pass3()
283 SAME_VAR(target->op1, T)) { in zend_optimizer_pass3()
292 new_target = ZEND_OFFSET_TO_OPLINE(target, target->extended_value); in zend_optimizer_pass3()
[all …]
H A Dblock_pass.c1198 zend_op *target; in zend_jmp_optimization() local
1205 while (target < target_end && target->opcode == ZEND_NOP) { in zend_jmp_optimization()
1206 target++; in zend_jmp_optimization()
1266 zend_op *target; in zend_jmp_optimization() local
1274 while (target < target_end && target->opcode == ZEND_NOP) { in zend_jmp_optimization()
1275 target++; in zend_jmp_optimization()
1341 while (target < target_end && target->opcode == ZEND_NOP) { in zend_jmp_optimization()
1342 target++; in zend_jmp_optimization()
1457 zend_op *target; in zend_jmp_optimization() local
1464 while (target < target_end && target->opcode == ZEND_NOP) { in zend_jmp_optimization()
[all …]
H A Ddfa_pass.c125 uint32_t target = 0; in zend_ssa_remove_nops() local
143 b->start = target; in zend_ssa_remove_nops()
145 shiftlist[i] = i - target; in zend_ssa_remove_nops()
149 (target > 0 && in zend_ssa_remove_nops()
154 if (i != target) { in zend_ssa_remove_nops()
156 ssa->ops[target] = ssa->ops[i]; in zend_ssa_remove_nops()
158 target++; in zend_ssa_remove_nops()
162 if (target != end && b->len != 0) { in zend_ssa_remove_nops()
166 b->len = target - b->start; in zend_ssa_remove_nops()
208 if (target != op_array->last) { in zend_ssa_remove_nops()
[all …]
H A Dnop_removal.c50 zend_op *target = ZEND_OP1_JMP_ADDR(opline) - 1; in zend_optimizer_nop_removal() local
52 while (target->opcode == ZEND_NOP) { in zend_optimizer_nop_removal()
53 target--; in zend_optimizer_nop_removal()
55 if (target == opline) { in zend_optimizer_nop_removal()
/PHP-7.1/build/
H A Dmkdep.awk48 target=filenames[i]
49 sub(srcdir "/", "", target)
50 target2=target
51 sub("\.(c|cpp)$", ".lo", target);
65 printf(target " " target2 ":")
/PHP-7.1/ext/intl/
H A Dintl_convert.c51 UChar** target, int32_t* target_len, in intl_convert_utf8_to_utf16() argument
70 u_strFromUTF8( *target, *target_len, &dst_len, src, (int32_t)src_len, status ); in intl_convert_utf8_to_utf16()
75 (*target)[dst_len] = 0; in intl_convert_utf8_to_utf16()
101 if( *target ) in intl_convert_utf8_to_utf16()
102 efree( *target ); in intl_convert_utf8_to_utf16()
104 *target = dst_buf; in intl_convert_utf8_to_utf16()
/PHP-7.1/sapi/fpm/fpm/
H A Dfpm_trace_mach.c17 static mach_port_name_t target; variable
37 kr = mach_vm_read(target, page, fpm_pagesize, &local_page, &local_size); in fpm_mach_vm_read_page()
60 kr = task_for_pid(mach_task_self(), pid, &target); in fpm_trace_ready()
77 target = 0; in fpm_trace_close()
/PHP-7.1/Zend/
H A Dzend_ts_hash.c245 ZEND_API void zend_ts_hash_copy(TsHashTable *target, TsHashTable *source, copy_ctor_func_t pCopyCon… in zend_ts_hash_copy() argument
248 begin_write(target); in zend_ts_hash_copy()
249 zend_hash_copy(TS_HASH(target), TS_HASH(source), pCopyConstructor); in zend_ts_hash_copy()
250 end_write(target); in zend_ts_hash_copy()
257 zend_hash_copy(target, TS_HASH(source), pCopyConstructor); in zend_ts_hash_copy_to_hash()
264 begin_write(target); in zend_ts_hash_merge()
265 zend_hash_merge(TS_HASH(target), TS_HASH(source), pCopyConstructor, overwrite); in zend_ts_hash_merge()
266 end_write(target); in zend_ts_hash_merge()
273 begin_write(target); in zend_ts_hash_merge_ex()
274 zend_hash_merge_ex(TS_HASH(target), TS_HASH(source), pCopyConstructor, pMergeSource, pParam); in zend_ts_hash_merge_ex()
[all …]
H A Dzend_hash.c1620 IS_CONSISTENT(target); in zend_hash_copy()
1648 if (target->nInternalPointer == HT_INVALID_IDX && target->nNumOfElements > 0) { in zend_hash_copy()
1759 HashTable *target; in zend_array_dup() local
1773 target->nNumUsed = 0; in zend_array_dup()
1784 HT_SET_DATA_ADDR(target, emalloc(HT_SIZE(target))); in zend_array_dup()
1801 HT_SET_DATA_ADDR(target, emalloc(HT_SIZE(target))); in zend_array_dup()
1824 HT_SET_DATA_ADDR(target, emalloc(HT_SIZE(target))); in zend_array_dup()
1825 HT_HASH_RESET(target); in zend_array_dup()
1846 return target; in zend_array_dup()
1857 IS_CONSISTENT(target); in _zend_hash_merge()
[all …]
/PHP-7.1/tests/security/
H A Dopen_basedir_symlink.phpt17 $target = ($initdir."/test/ok/ok.txt");
18 var_dump(symlink($target, "../bad/symlink.txt"));
19 var_dump(symlink($target, "../symlink.txt"));
20 var_dump(symlink($target, "../bad/./symlink.txt"));
21 var_dump(symlink($target, "./.././symlink.txt"));
30 $target = ($initdir."/test/ok/ok.txt");
32 var_dump(symlink($target, $symlink));
37 var_dump(symlink("../ok.txt", $symlink)); // $target == (dirname($symlink)."/".$target) == ($initdi…
H A Dopen_basedir_link.phpt17 $target = ($initdir."/test/ok/ok.txt");
18 var_dump(link($target, "../bad/link.txt"));
19 var_dump(link($target, "../link.txt"));
20 var_dump(link($target, "../bad/./link.txt"));
21 var_dump(link($target, "./.././link.txt"));
30 $target = ($initdir."/test/ok/ok.txt");
32 var_dump(link($target, $link));
H A Dopen_basedir_linkinfo.phpt22 $target = ($initdir."/test/bad/bad.txt");
24 var_dump(symlink($target, $symlink));
34 $target = ($initdir."/test/ok/ok.txt");
36 var_dump(symlink($target, $symlink));
H A Dopen_basedir_readlink.phpt19 $target = ($initdir."/test/bad/bad.txt");
21 var_dump(symlink($target, $symlink));
31 $target = ($initdir."/test/ok/ok.txt");
33 var_dump(symlink($target, $symlink));
/PHP-7.1/ext/mbstring/oniguruma/
H A Dregcomp.c1213 if (node->target) { in compile_length_enclose_node()
1377 if (node->target) { in compile_length_anchor_node()
1786 *plink = en->target; in noname_disable_map()
1787 en->target = NULL_NODE; in noname_disable_map()
3029 if (IS_NULL(cn->target)) { in setup_subexp_call()
3097 head = an->target; in divide_look_behind_alternatives()
3181 node = en->target; in next_setup()
3543 Node* target = qn->target; in setup_comb_exp_check() local
3724 Node* target = qn->target; in setup_tree() local
3777 onig_node_free(target); in setup_tree()
[all …]
/PHP-7.1/ext/opcache/
H A Dzend_accelerator_util_funcs.c479 zend_hash_extend(target, target->nNumUsed + source->nNumUsed, 0); in zend_accel_function_hash_copy()
485 t = zend_hash_find(target, p->key); in zend_accel_function_hash_copy()
489 t = zend_hash_update(target, p->key, &p->val); in zend_accel_function_hash_copy()
494 _zend_hash_append_ptr(target, p->key, Z_PTR(p->val)); in zend_accel_function_hash_copy()
497 target->nInternalPointer = target->nNumOfElements ? 0 : HT_INVALID_IDX; in zend_accel_function_hash_copy()
523 zend_hash_extend(target, target->nNumUsed + source->nNumUsed, 0); in zend_accel_function_hash_copy_from_shm()
529 t = zend_hash_find(target, p->key); in zend_accel_function_hash_copy_from_shm()
541 target->nInternalPointer = target->nNumOfElements ? 0 : HT_INVALID_IDX; in zend_accel_function_hash_copy_from_shm()
566 zend_hash_extend(target, target->nNumUsed + source->nNumUsed, 0); in zend_accel_class_hash_copy()
572 t = zend_hash_find(target, p->key); in zend_accel_class_hash_copy()
[all …]
/PHP-7.1/sapi/fpm/
H A Dphp-fpm.service.in7 After=network.target
17 WantedBy=multi-user.target
/PHP-7.1/ext/standard/
H A Dstring.c3125 target++;
3129 *target = 0;
3741 *target='\0';
3782 *target = 0;
3855 *target = 0;
4137 *target = 0;
4138 target--;
4191 target--;
4206 target--;
4255 target++;
[all …]
/PHP-7.1/ext/standard/tests/file/
H A Dsymlink_link_linkinfo_is_link_variation2.phpt11 /* Prototype: bool symlink ( string $target, string $link );
12 Description: creates a symbolic link to the existing target with the specified name link
17 Prototype: bool link ( string $target, string $link );
H A Dsymlink_link_linkinfo_is_link_variation5.phpt11 /* Prototype: bool symlink ( string $target, string $link );
12 Description: creates a symbolic link to the existing target with the specified name link
17 Prototype: bool link ( string $target, string $link );
/PHP-7.1/ext/phar/tests/bug77586/files/
H A Dlink-nktarAMLdJBv7BGYnpzg-ZDycSpWN3Ne3kacltOSE-EqfhStJ1EoBpGuoua6VE-dne29hvpNWXiVbepwIf8-NRHWM9LITLo3nXZnKVNC1 target
/PHP-7.1/win32/
H A Dcodepage.c175 char* target; in php_win32_cp_from_w_int() local
191 target = malloc(target_len); in php_win32_cp_from_w_int()
192 if (target == NULL) { in php_win32_cp_from_w_int()
197 r = WideCharToMultiByte(cp, flags, in, tmp_len, target, target_len, NULL, NULL); in php_win32_cp_from_w_int()
199 free(target); in php_win32_cp_from_w_int()
204 assert(target ? r == target_len : 1); in php_win32_cp_from_w_int()
205 assert(target ? strlen(target) == target_len - 1 : 1); in php_win32_cp_from_w_int()
207 target[target_len-1] = '\0'; in php_win32_cp_from_w_int()
213 return target; in php_win32_cp_from_w_int()
/PHP-7.1/ext/intl/resourcebundle/
H A Dresourcebundle.h26 void resourcebundle_extract_value( zval *target, ResourceBundle_object *source);
/PHP-7.1/ext/xml/tests/
H A Dxml_set_processing_instruction_handler_basic.phpt20 function PIHandler($parser, $target, $data)
22 echo "Target: " . $target. "\n";
/PHP-7.1/win32/build/
H A Dconfutils.js728 common_name = target;
745 if (target == null) {
746 target = "";
748 target = "_" + target.toUpperCase();
801 ADD_FLAG("LIBS" + target, libname);
842 if (target == null) {
843 target = "";
845 target = "_" + target.toUpperCase();
1505 if (target == null) {
1506 target = "php";
[all …]

Completed in 138 milliseconds

123456