| /PHP_5_3/ext/dba/ |
| H A D | install_cdb.sh | 35 mkdir -p tmp || exit 1 36 cd tmp 49 rm -rf tmp
|
| /PHP_5_3/ext/pdo_mysql/tests/ |
| H A D | mysql_pdo_test.inc | 61 $tmp = explode('=', $v); 62 if (count($tmp) == 2) 63 $old_options[$tmp[0]] = $tmp[1]; 104 $tmp = (int)$version_string; 105 if (((string)$tmp) === $version_string) 106 return $tmp; 163 $tmp = ob_get_contents(); 165 $tmp = stristr($tmp, "PD [all...] |
| /PHP_5_3/ext/phar/tests/tar/files/ |
| H A D | make_invalid_tar.php.inc | 6 fwrite($this->tmp, (binary)'oopsie'); 7 fclose($this->tmp);
|
| /PHP_5_3/ext/standard/tests/array/ |
| H A D | data.inc | 2 $tmp = pow(2,24); 11 $tmp=>-1/3
|
| /PHP_5_3/scripts/dev/ |
| H A D | conv_proto | 11 tmpfile=`mktemp -q /tmp/asd.XXXXXX`
|
| H A D | conv_z_macros | 57 < $i > tmp && cp tmp $i 61 rm -f tmp
|
| /PHP_5_3/win32/ |
| H A D | wsyslog.c | 86 char *tmp = NULL; local 108 vspprintf(&tmp, 0, message, args); /* build message */ 110 strs[1] = tmp; /* then the message */ 114 efree(tmp);
|
| /PHP_5_3/ext/gd/libgd/ |
| H A D | gdkanji.c | 76 char *tmp; local 80 vspprintf(&tmp, 0, format, args); 82 php_error_docref(NULL TSRMLS_CC, E_WARNING, "%s: %s", LIBNAME, tmp); 83 efree(tmp); 468 static unsigned char tmp[BUFSIZ]; local 476 do_convert (tmp, from, NEWJISSTR); 480 do_convert (tmp, from, OLDJISSTR); 484 do_convert (tmp, from, NEWJISSTR); 489 ustrcpy (tmp, from); 494 ustrcpy (tmp, fro [all...] |
| /PHP_5_3/ext/mbstring/libmbfl/mbfl/ |
| H A D | mbfl_memory_device.c | 70 unsigned char *tmp; local 74 tmp = (unsigned char *)mbfl_realloc((void *)device->buffer, initsz*sizeof(unsigned char)); 75 if (tmp != NULL) { 76 device->buffer = tmp; 146 unsigned char *tmp; local 149 tmp = (unsigned char *)mbfl_realloc((void *)device->buffer, newlen*sizeof(unsigned char)); 150 if (tmp == NULL) { 154 device->buffer = tmp; 169 unsigned char *tmp; local 172 tmp 194 unsigned char *tmp; local 230 unsigned char *tmp = (unsigned char *)mbfl_realloc((void *)device->buffer, newlen*sizeof(unsigned char)); local 257 unsigned char *tmp = (unsigned char *)mbfl_realloc((void *)device->buffer, newlen*sizeof(unsigned char)); local 284 unsigned char *tmp = (unsigned char *)mbfl_realloc((void *)dest->buffer, newlen*sizeof(unsigned char)); local 336 unsigned int *tmp; local [all...] |
| /PHP_5_3/ext/mysqli/tests/ |
| H A D | reflection_tools.inc | 22 $tmp = array(); 24 $tmp[$method->getName()] = $method; 26 ksort($tmp, SORT_STRING); 27 foreach ($tmp as $method) 32 $tmp = array(); 34 $tmp[$prop->getName()] = $prop; 35 ksort($tmp, SORT_STRING); 36 foreach ($tmp as $prop) 93 $tmp = array(); 95 $tmp[ [all...] |
| /PHP_5_3/ext/bz2/ |
| H A D | bz2_filter.c | 356 zval tmp, *tmp2; local 358 tmp = **tmpzval; 359 zval_copy_ctor(&tmp); 360 tmp2 = &tmp; 362 data->expect_concatenated = Z_LVAL(tmp); 372 zval tmp, *tmp2; local 374 tmp = **tmpzval; 375 zval_copy_ctor(&tmp); 376 tmp2 = &tmp; 378 data->small_footprint = Z_LVAL(tmp); 394 zval tmp; local 408 zval tmp; local [all...] |
| /PHP_5_3/ext/calendar/ |
| H A D | easter.c | 33 long year, golden, solar, lunar, pfm, dom, tmp, easter; local 93 tmp = (4-pfm-dom) % 7; 94 if (tmp < 0) { 95 tmp += 7; 98 easter = pfm + tmp + 1; /* Easter as the number of days after 21st March */
|
| /PHP_5_3/ext/ctype/ |
| H A D | ctype.c | 146 zval *c, tmp; \ 155 tmp = *c; \ 156 zval_copy_ctor(&tmp); \ 157 convert_to_string(&tmp); \ 159 tmp = *c; \ 161 if (Z_TYPE(tmp) == IS_STRING) { \ 162 char *p = Z_STRVAL(tmp), *e = Z_STRVAL(tmp) + Z_STRLEN(tmp); \ 164 if (Z_TYPE_P(c) == IS_LONG) zval_dtor(&tmp); \ [all...] |
| /PHP_5_3/ext/date/lib/ |
| H A D | parse_tz.c | 263 char *cur_locale = NULL, *tmp; local 265 tmp = setlocale(LC_CTYPE, NULL); 266 if (tmp) { 267 cur_locale = strdup(tmp); 318 timelib_tzinfo *tmp; local 321 tmp = timelib_tzinfo_ctor(timezone); 323 read_preamble(&tzf, tmp); 324 read_header(&tzf, tmp); 325 read_transistions(&tzf, tmp); 326 read_types(&tzf, tmp); 412 timelib_time_offset *tmp = timelib_time_offset_ctor(); local [all...] |
| H A D | timelib.c | 51 timelib_time *tmp = timelib_time_ctor(); local 52 memcpy(tmp, orig, sizeof(timelib_time)); 54 tmp->tz_abbr = strdup(orig->tz_abbr); 57 tmp->tz_info = orig->tz_info; 59 return tmp; 64 timelib_rel_time *tmp = timelib_rel_time_ctor(); local 65 memcpy(tmp, rel, sizeof(timelib_rel_time)); 66 return tmp; 116 timelib_tzinfo *tmp = timelib_tzinfo_ctor(tz->name); local 117 tmp [all...] |
| /PHP_5_3/ext/hash/ |
| H A D | hash_ripemd.c | 207 php_hash_uint32 tmp, x[16]; local 213 tmp = ROLS( j, a + F0(b, c, d) + x[R[j]] + K(j)); 214 a = d; d = c; c = b; b = tmp; 215 tmp = ROLSS(j, aa + F3(bb, cc, dd) + x[RR[j]] + KK(j)); 216 aa = dd; dd = cc; cc = bb; bb = tmp; 220 tmp = ROLS( j, a + F1(b, c, d) + x[R[j]] + K(j)); 221 a = d; d = c; c = b; b = tmp; 222 tmp = ROLSS(j, aa + F2(bb, cc, dd) + x[RR[j]] + KK(j)); 223 aa = dd; dd = cc; cc = bb; bb = tmp; 227 tmp 298 php_hash_uint32 tmp, x[16]; local 396 php_hash_uint32 tmp, x[16]; local 495 php_hash_uint32 tmp, x[16]; local [all...] |
| /PHP_5_3/ext/soap/ |
| H A D | php_http.c | 96 zval **tmp; local 99 php_stream_context_get_option(context, "http", "header", &tmp) == SUCCESS && 100 Z_TYPE_PP(tmp) == IS_STRING && Z_STRLEN_PP(tmp)) { 101 char *s = Z_STRVAL_PP(tmp); 162 zval **proxy_host, **proxy_port, **tmp; local 182 if (zend_hash_find(Z_OBJPROP_P(this_ptr), "_connection_timeout", sizeof("_connection_timeout"), (void **) &tmp) == SUCCESS && 183 Z_TYPE_PP(tmp) == IS_LONG && Z_LVAL_PP(tmp) > 0) { 184 tv.tv_sec = Z_LVAL_PP(tmp); 282 zval **trace, **tmp; local 762 zval **tmp; local 840 char *tmp; local 1261 char *pos, *tmp = NULL; local [all...] |
| H A D | php_packet_soap.c | 184 xmlNodePtr tmp; local 187 tmp = get_node(fault->children, "faultcode"); 188 if (tmp != NULL && tmp->children != NULL) { 189 faultcode = (char*)tmp->children->content; 192 tmp = get_node(fault->children, "faultstring"); 193 if (tmp != NULL && tmp->children != NULL) { 194 zval *zv = master_to_zval(get_conversion(IS_STRING), tmp); 199 tmp 263 zval* tmp; local 352 zval *tmp; local 367 add_assoc_zval(return_value, (char*)val->name, tmp); local 385 zval *tmp; local [all...] |
| H A D | php_sdl.c | 388 xmlAttrPtr tmp = get_attribute(trav->properties, "location"); local 389 if (tmp) { 394 uri = xmlBuildURI(tmp->children->content, trav->doc->URL); 396 uri = xmlBuildURI(tmp->children->content, base); 451 xmlAttrPtr tmp; local 456 tmp = get_attribute(header->properties, "message"); 457 if (!tmp) { 461 ctype = strrchr((char*)tmp->children->content,':'); 463 ctype = (char*)tmp->children->content; 468 soap_error1(E_ERROR, "Parsing WSDL: Missing <message> with name '%s'", tmp 564 xmlAttrPtr tmp; local 666 xmlNodePtr trav, part, message = NULL, *tmp; local 755 xmlNodePtr *tmp, service; local 851 xmlAttrPtr tmp; local 954 xmlAttrPtr tmp; local 1081 xmlAttrPtr tmp; local 1134 char *tmp = estrdup(function->functionName); local 1467 sdlSoapBindingFunctionHeaderPtr tmp = emalloc(sizeof(sdlSoapBindingFunctionHeader)); local 1859 sdlExtraAttributePtr *tmp; local 1882 sdlContentModelPtr *tmp; local 1961 sdlRestrictionCharPtr *tmp; local 1980 sdlTypePtr *tmp; local 2002 sdlAttributePtr *tmp; local 2041 sdlParamPtr *tmp; local 2071 sdlSoapBindingFunctionHeaderPtr *tmp; local 2152 sdlTypePtr *tmp; local 2169 sdlTypePtr *tmp; local 2186 sdlTypePtr *tmp; local 2203 encodePtr *tmp; local 2220 sdlTypePtr *tmp; local 2230 sdlTypePtr *tmp; local 2240 sdlTypePtr *tmp; local 2250 encodePtr *tmp; local 2267 sdlBindingPtr *tmp; local 2294 sdlFunctionPtr *tmp; local 2363 sdlFunctionPtr *tmp; local 2412 sdlTypePtr *tmp; local 2424 encodePtr *tmp; local 2442 sdlSoapBindingFunctionHeaderPtr *tmp, pheader; local 2510 sdlParamPtr *tmp, pparam; local 2559 sdlFaultPtr *tmp, pfault; local 2640 sdlExtraAttributePtr *tmp, pextra; local 2671 sdlContentModelPtr *tmp, pcontent; local 2791 sdlRestrictionCharPtr tmp; local 2800 sdlTypePtr *tmp, pelem; local 2819 sdlAttributePtr *tmp, pattr; local 2914 sdlBindingPtr *tmp; local 2973 sdlTypePtr *tmp; local 2993 sdlTypePtr *tmp; local 3013 sdlTypePtr *tmp; local 3033 encodePtr *tmp; local 3054 sdlTypePtr **tmp, *ptype = NULL; local 3066 encodePtr **tmp, *penc = NULL; local 3080 sdlBindingPtr *tmp; local 3101 sdlFunctionPtr *tmp; local 3118 sdlFunctionPtr *tmp; local 3152 sdlPtr tmp = p->sdl; local 3195 zval **tmp, **proxy_host, **proxy_port, *orig_context = NULL, *new_context = NULL; local 3423 sdlPtr tmp = (sdlPtr)handle; local 3461 sdlPtr tmp = (sdlPtr)handle; local [all...] |
| /PHP_5_3/ext/standard/ |
| H A D | cyr_convert.c | 207 unsigned char tmp; local 263 tmp = (from_table == NULL)? str[i] : from_table[ str[i] ]; 264 str[i] = (to_table == NULL) ? tmp : to_table[tmp + 256];
|
| /PHP_5_3/ext/zlib/ |
| H A D | zlib_filter.c | 332 zval tmp; local 335 tmp = **tmpzval; 336 zval_copy_ctor(&tmp); 337 convert_to_long(&tmp); 338 if (Z_LVAL(tmp) < -MAX_WBITS || Z_LVAL(tmp) > MAX_WBITS + 32) { 339 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Invalid parameter give for window size. (%ld)", Z_LVAL(tmp)); 341 windowBits = Z_LVAL(tmp); 358 zval **tmpzval, tmp; local 367 tmp [all...] |
| /PHP_5_3/main/ |
| H A D | reentrancy.c | 178 struct tm *tmp; local 182 tmp = localtime(timep); 183 if (tmp) { 184 memcpy(p_tm, tmp, sizeof(struct tm)); 185 tmp = p_tm; 190 return tmp; 199 char *tmp; local 203 tmp = ctime(clock); 204 strcpy(buf, tmp); 217 char *tmp; local 235 struct tm *tmp; local [all...] |
| /PHP_5_3/sapi/apache_hooks/ |
| H A D | sapi_apache.c | 67 char *tmp; local 97 if( (tmp = strstr(handler->name, "::")) != NULL && *(tmp+2) != '\0' ) { 100 *tmp = '\0'; 104 ZVAL_STRING(method, tmp +2, 1); 105 *tmp = ':';
|
| /PHP_5_3/Zend/ |
| H A D | zend_API.c | 1071 zval *tmp; local 1089 zend_hash_copy(object->properties, &class_type->default_properties, zval_copy_property_ctor(class_type), (void *) &tmp, sizeof(zval *)); 1119 zval *tmp; local 1121 MAKE_STD_ZVAL(tmp); 1122 ZVAL_LONG(tmp, n); 1124 return zend_symtable_update(Z_ARRVAL_P(arg), key, key_len, (void *) &tmp, sizeof(zval *), NULL); 1130 zval *tmp; local 1132 MAKE_STD_ZVAL(tmp); 1133 ZVAL_NULL(tmp); 1135 return zend_symtable_update(Z_ARRVAL_P(arg), key, key_len, (void *) &tmp, sizeo 1141 zval *tmp; local 1152 zval *tmp; local 1163 zval *tmp; local 1174 zval *tmp; local 1185 zval *tmp; local 1202 zval *tmp; local 1213 zval *tmp; local 1224 zval *tmp; local 1235 zval *tmp; local 1246 zval *tmp; local 1257 zval *tmp; local 1268 zval *tmp; local 1285 zval *tmp; local 1296 zval *tmp; local 1307 zval *tmp; local 1318 zval *tmp; local 1329 zval *tmp; local 1340 zval *tmp; local 1351 zval *tmp; local 1368 zval *tmp; local 1379 zval *tmp; local 1390 zval *tmp; local 1401 zval *tmp; local 1412 zval *tmp; local 1423 zval *tmp; local 1434 zval *tmp; local 1452 zval *tmp; local 1470 zval *tmp; local 1488 zval *tmp; local 1506 zval *tmp; local 1524 zval *tmp; local 1542 zval *tmp; local 1633 Bucket *tmp; local 3387 zval *tmp; local 3399 zval *tmp; local 3411 zval *tmp; local 3423 zval *tmp; local 3435 zval *tmp; local 3447 zval *tmp; local 3496 zval *tmp; local 3508 zval *tmp; local 3520 zval *tmp; local 3532 zval *tmp; local 3544 zval *tmp; local 3556 zval *tmp; local [all...] |
| /PHP_5_3/ext/mysqlnd/ |
| H A D | mysqlnd_result_meta.c | 57 register const char * tmp = key; local 59 if (*tmp=='-') { 60 tmp++; 62 if ((*tmp>='0' && *tmp<='9')) { 66 if (*tmp++=='0' && length>2) { /* don't accept numbers with leading zeros */ 69 while (tmp<end) { 70 if (!(*tmp>='0' && *tmp<='9')) { 73 tmp 100 register UChar * tmp=key; local [all...] |