| /PHP_5_5/ext/ereg/regex/ |
| H A D | regerror.c | 73 register int target = errcode &~ REG_ITOA; local 81 if (r->code == target) 89 snprintf(convbuf, sizeof(convbuf), "REG_0x%x", target);
|
| /PHP_5_5/sapi/fpm/fpm/ |
| H A D | fpm_trace_mach.c | 18 static mach_port_name_t target; variable 38 kr = mach_vm_read(target, page, fpm_pagesize, &local_page, &local_size); 61 kr = task_for_pid(mach_task_self(), pid, &target); 78 target = 0;
|
| /PHP_5_5/ext/intl/ |
| H A D | intl_convert.c | 28 * Convert given string from UTF-8 to UTF-16 to *target buffer. 30 * It *target is NULL then we allocate a large enough buffer, 31 * store the converted string into it, and make target point to it. 33 * Otherwise, if *target is non-NULL, we assume that it points to a 38 * @param target Where to place the result. 47 UChar** target, int* target_len, 54 /* If *target is NULL determine required destination buffer size (pre-flighting). 55 * Otherwise, attempt to convert source string; if *target buffer is not large enough 60 u_strFromUTF8( *target, *target_len, &dst_len, src, src_len, status ); 65 (*target)[dst_le 46 intl_convert_utf8_to_utf16( UChar** target, int* target_len, const char* src, int src_len, UErrorCode* status ) argument 110 intl_convert_utf16_to_utf8( char** target, int* target_len, const UChar* src, int src_len, UErrorCode* status ) argument [all...] |
| /PHP_5_5/ext/mbstring/oniguruma/ |
| H A D | regcomp.c | 193 uslist->us[uslist->num].target = node; 399 node->target); 698 r = compile_tree_empty_check(qn->target, reg, empty_info); 720 NTYPE(qn->target) == NT_CANY) 738 int tlen = compile_length_tree(qn->target, reg); 747 if (NTYPE(qn->target) == NT_CANY) { 818 int tlen = compile_length_tree(qn->target, reg); 825 r = compile_tree_n_times(qn->target, qn->lower, reg); 883 r = compile_tree_empty_check(qn->target, reg, empty_info); 894 r = compile_tree_empty_check(qn->target, re 3544 Node* target = qn->target; local 3725 Node* target = qn->target; local 3825 Node* target = en->target; local [all...] |
| H A D | regexec.c | 2741 slow_search(OnigEncoding enc, UChar* target, UChar* target_end, argument 2747 end -= target_end - target - 1; 2754 if (*s == *target) { 2756 t = target + 1; 2793 UChar* target, UChar* target_end, 2799 end -= target_end - target - 1; 2806 if (str_lower_case_match(enc, case_fold_flag, target, target_end, 2817 slow_search_backward(OnigEncoding enc, UChar* target, UChar* target_end, argument 2824 s -= (target_end - target); 2831 if (*s == *target) { 2792 slow_search_ic(OnigEncoding enc, int case_fold_flag, UChar* target, UChar* target_end, const UChar* text, const UChar* text_end, UChar* text_range) argument 2849 slow_search_backward_ic(OnigEncoding enc, int case_fold_flag, UChar* target, UChar* target_end, const UChar* text, const UChar* adjust_text, const UChar* text_end, const UChar* text_start) argument 2875 bm_search_notrev(regex_t* reg, const UChar* target, const UChar* target_end, const UChar* text, const UChar* text_end, const UChar* text_range) argument 2931 bm_search(regex_t* reg, const UChar* target, const UChar* target_end, const UChar* text, const UChar* text_end, const UChar* text_range) argument 2991 bm_search_backward(regex_t* reg, const UChar* target, const UChar* target_end, const UChar* text, const UChar* adjust_text, const UChar* text_end, const UChar* text_start) argument [all...] |
| H A D | regparse.c | 1045 if (NQTFR(node)->target) 1046 onig_node_free(NQTFR(node)->target); 1050 if (NENCLOSE(node)->target) 1051 onig_node_free(NENCLOSE(node)->target); 1060 if (NANCHOR(node)->target) 1061 onig_node_free(NANCHOR(node)->target); 1266 NANCHOR(node)->target = NULL; 1331 NCALL(node)->target = NULL_NODE; 1347 NQTFR(node)->target = NULL; 1376 NENCLOSE(node)->target 4507 Node *target; local 4755 set_quantifier(Node* qnode, Node* target, int group, ScanEnv* env) argument 5059 Node* target; local [all...] |
| H A D | regparse.h | 172 struct _Node* target; member in struct:__anon264 191 struct _Node* target; member in struct:__anon265 204 struct _Node* target; member in struct:__anon266 219 struct _Node* target; /* EncloseNode : ENCLOSE_MEMORY */ member in struct:__anon268 237 struct _Node* target; member in struct:__anon270
|
| /PHP_5_5/TSRM/ |
| H A D | tsrm_virtual_cwd.c | 222 CWD_API int php_sys_readlink(const char *link, char *target, size_t target_len){ /* {{{ */ argument 253 dwRet = pGetFinalPathNameByHandle(hFile, target, MAXPATHLEN, VOLUME_NAME_DOS); 262 if(target[0] == '\\' && target[1] == '\\' && target[2] == '?' && target[3] == '\\') { 268 if (dwRet > 7 && target[4] == 'U' && target[5] == 'N' && target[6] == 'C') { 271 target[offse [all...] |
| /PHP_5_5/Zend/ |
| H A D | zend_constants.c | 50 void zend_copy_constants(HashTable *target, HashTable *source) argument 54 zend_hash_copy(target, source, (copy_ctor_func_t) copy_zend_constant, &tmp_constant, sizeof(zend_constant));
|
| H A D | zend_ts_hash.c | 267 ZEND_API void zend_ts_hash_copy(TsHashTable *target, TsHashTable *source, copy_ctor_func_t pCopyConstructor, void *tmp, uint size) argument 270 begin_write(target); 271 zend_hash_copy(TS_HASH(target), TS_HASH(source), pCopyConstructor, tmp, size); 272 end_write(target); 276 ZEND_API void zend_ts_hash_copy_to_hash(HashTable *target, TsHashTable *source, copy_ctor_func_t pCopyConstructor, void *tmp, uint size) argument 279 zend_hash_copy(target, TS_HASH(source), pCopyConstructor, tmp, size); 283 ZEND_API void zend_ts_hash_merge(TsHashTable *target, TsHashTable *source, copy_ctor_func_t pCopyConstructor, void *tmp, uint size, int overwrite) argument 286 begin_write(target); 287 zend_hash_merge(TS_HASH(target), TS_HASH(source), pCopyConstructor, tmp, size, overwrite); 288 end_write(target); 292 zend_ts_hash_merge_ex(TsHashTable *target, TsHashTable *source, copy_ctor_func_t pCopyConstructor, uint size, merge_checker_func_t pMergeSource, void *pParam) argument [all...] |
| H A D | zend_variables.c | 194 HashTable *target = va_arg(args, HashTable*); local 230 if (zend_hash_quick_add(target, key->arKey, key->nKeyLength, key->h, &tmp, sizeof(zval*), NULL) == SUCCESS) {
|
| H A D | zend_hash.c | 814 ZEND_API void zend_hash_copy(HashTable *target, HashTable *source, copy_ctor_func_t pCopyConstructor, void *tmp, uint size) argument 821 IS_CONSISTENT(target); 823 setTargetPointer = !target->pInternalPointer; 827 target->pInternalPointer = NULL; 830 zend_hash_quick_update(target, p->arKey, p->nKeyLength, p->h, p->pData, size, &new_entry); 832 zend_hash_index_update(target, p->h, p->pData, size, &new_entry); 839 if (!target->pInternalPointer) { 840 target->pInternalPointer = target->pListHead; 845 ZEND_API void _zend_hash_merge(HashTable *target, HashTabl argument 871 zend_hash_replace_checker_wrapper(HashTable *target, void *source_data, Bucket *p, void *pParam, merge_checker_func_t merge_checker_func) argument 882 zend_hash_merge_ex(HashTable *target, HashTable *source, copy_ctor_func_t pCopyConstructor, uint size, merge_checker_func_t pMergeSource, void *pParam) argument [all...] |
| /PHP_5_5/ext/standard/ |
| H A D | link_win32.c | 62 Return the target of a symbolic link */ 67 char target[MAXPATHLEN]; local 77 if (php_sys_readlink(link, target, MAXPATHLEN) == -1) { 81 RETURN_STRING(target, 1); 108 /* {{{ proto int symlink(string target, string link) 175 * For the target the exact string given by the user must be used, relative or not, existing or not. 176 * The target is relative to the link itself, not to the CWD. */ 188 /* {{{ proto int link(string target, string link) 198 /*First argument to link function is the target and hence should go to frompath
|
| H A D | file.c | 1601 char *source, *target; local 1606 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "pp|r", &source, &source_len, &target, &target_len, &zcontext) == FAILURE) { 1616 if (php_copy_file_ctx(source, target, 0, context TSRMLS_CC) == SUCCESS) {
|
| H A D | string.c | 1664 static int php_needle_char(zval *needle, char *target TSRMLS_DC) 1669 *target = (char)Z_LVAL_P(needle); 1672 *target = '\0'; 1675 *target = (char)(int)Z_DVAL_P(needle); 1685 *target = (char)Z_LVAL(holder); 3404 char *source, *target, *end; local 3408 for (source=str, end=str+nlen, target=str; source < end; source++) { 3412 case 'n': *target++='\n'; nlen--; break; 3413 case 'r': *target++='\r'; nlen--; break; 3414 case 'a': *target 3469 char *source, *target; local 3522 char *source, *target; local 3579 char *source, *target, *tmp, *source_end=str+len, *tmp_end = NULL; local 4036 char *heb_str, *tmp, *target, *broken_str; local 4224 char *end, *target; local [all...] |
| /PHP_5_5/ext/xml/ |
| H A D | compat.c | 278 _pi_handler(void *user, const xmlChar *target, const xmlChar *data) argument 285 spprintf(&full_pi, 0, "<?%s %s?>", (char *)target, (char *)data); 292 parser->h_pi(parser->user, (const XML_Char *) target, (const XML_Char *) data);
|
| H A D | xml.c | 622 /* If the target encoding was unknown, fail */ 677 /* If the target encoding was unknown, or no decoder function 1004 void _xml_processingInstructionHandler(void *userData, const XML_Char *target, const XML_Char *data) argument 1012 args[1] = _xml_xmlchar_zval(target, 0, parser->target_encoding); 1635 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unsupported target encoding \"%s\"", Z_STRVAL_PP(val));
|
| /PHP_5_5/sapi/apache_hooks/ |
| H A D | php_apache.c | 213 char **target; local 221 target = (char **)((char*)r + offset); 222 old_value = *target; 225 *target = ap_pstrdup(r->pool, new_value); 263 long *target; local 271 target = (long *)((char*)r + offset); 272 old_value = *target; 278 *target = new_value;
|
| /PHP_5_5/ext/opcache/Optimizer/ |
| H A D | nop_removal.c | 19 /* GOTO target is unresolved yet. We can't optimize. */ 31 zend_op *target = op_array->opcodes + ZEND_OP1(opline).opline_num - 1; local 33 while (target->opcode == ZEND_NOP) { 34 target--; 36 if (target == opline) {
|
| H A D | pass3.c | 11 #define CHECK_JMP(target, label) \ 13 if (jmp_hitlist[i] == ZEND_OP1(&op_array->opcodes[target]).opline_num) { \ 17 jmp_hitlist[jmp_hitlist_count++] = ZEND_OP1(&op_array->opcodes[target]).opline_num; 19 #define CHECK_JMP2(target, label) \ 21 if (jmp_hitlist[i] == ZEND_OP2(&op_array->opcodes[target]).opline_num) { \ 25 jmp_hitlist[jmp_hitlist_count++] = ZEND_OP2(&op_array->opcodes[target]).opline_num; 150 int target = ZEND_OP1(opline).opline_num; variable 151 CHECK_JMP(target, done_jmp_optimization); 152 ZEND_OP1(opline).opline_num = ZEND_OP1(&op_array->opcodes[target]).opline_num; 169 int target variable 194 int target = ZEND_OP2(opline).opline_num; variable 260 int target = ZEND_OP2(opline).opline_num; variable 393 int target = ZEND_OP2(opline).opline_num; variable 401 int target = opline->extended_value; variable [all...] |
| H A D | block_pass.c | 1355 zend_op *target = block->op1_to->start_opline; local 1376 if (((target->opcode == ZEND_JMP && 1378 target->opcode == ZEND_JMPZNZ) && 1382 *last_op = *target; 1409 } else if (target->opcode == ZEND_RETURN || 1411 target->opcode == ZEND_RETURN_BY_REF || 1414 target->opcode == ZEND_FAST_RET || 1416 target->opcode == ZEND_EXIT) { 1418 *last_op = *target; 1437 target 1520 zend_op *target; local 1595 zend_op *target; local 1654 zend_op *target, *target_end; local 1814 zend_op *target; local [all...] |
| /PHP_5_5/main/ |
| H A D | main.c | 698 char *buffer = NULL, *docref_buf = NULL, *target = NULL; local 815 /* strip of the target if any */ 818 target = estrdup(p); 819 if (target) { 820 docref_target = target; 837 if (target) { 838 efree(target);
|
| /PHP_5_5/ext/opcache/ |
| H A D | zend_accelerator_util_funcs.c | 824 static int zend_hash_unique_copy(HashTable *target, HashTable *source, unique_copy_ctor_func_t pCopyConstructor, uint size, int ignore_dups, void **fail_data, void **conflict_data) argument 832 if (zend_hash_quick_add(target, p->arKey, p->nKeyLength, p->h, p->pData, size, &t) == SUCCESS) { 839 } else if (!ignore_dups && zend_hash_quick_find(target, p->arKey, p->nKeyLength, p->h, &t) == SUCCESS) { 846 if (!zend_hash_index_exists(target, p->h) && zend_hash_index_update(target, p->h, p->pData, size, &t) == SUCCESS) { 850 } else if (!ignore_dups && zend_hash_index_find(target,p->h, &t) == SUCCESS) { 858 target->pInternalPointer = target->pListHead; 863 static void zend_accel_function_hash_copy(HashTable *target, HashTable *source, unique_copy_ctor_func_t pCopyConstructor) argument 868 if (zend_hash_unique_copy(target, sourc 884 zend_accel_class_hash_copy(HashTable *target, HashTable *source, unique_copy_ctor_func_t pCopyConstructor TSRMLS_DC) argument [all...] |
| /PHP_5_5/ext/xmlrpc/libxmlrpc/ |
| H A D | simplestring.c | 181 * copies n characters from source to target string 183 * target - target string 193 void simplestring_addn(simplestring* target, const char* source, int add_len) { argument 194 if(target && source) { 195 if(!target->str) { 196 simplestring_init_str(target); 198 if(target->len + add_len + 1 > target->size) { 200 int newsize = target 238 simplestring_add(simplestring* target, const char* source) argument [all...] |
| H A D | xmlrpc.c | 1116 * This should use a hash to determine if a given target id has already 1122 static int isDuplicateEntry(XMLRPC_VALUE target, XMLRPC_VALUE source) { argument 1130 * int XMLRPC_AddValueToVector(XMLRPC_VALUE target, XMLRPC_VALUE source) 1134 * target The target vector 1148 int XMLRPC_AddValueToVector(XMLRPC_VALUE target, XMLRPC_VALUE source) { argument 1149 if(target && source) { 1150 if(target->type == xmlrpc_vector && target->v && 1151 target 1211 XMLRPC_AddValuesToVector(XMLRPC_VALUE target, ...) argument [all...] |