Home
last modified time | relevance | path

Searched refs:idx (Results 26 – 50 of 83) sorted by relevance

1234

/PHP-5.3/ext/sqlite/libsqlite/src/
H A Dprintf.c202 int idx; /* A general purpose loop counter */ in vxprintf() local
309 for(idx=0; idx<etNINFO; idx++){ in vxprintf()
310 if( c==fmtinfo[idx].fmttype ){ in vxprintf()
311 infop = &fmtinfo[idx]; in vxprintf()
374 for(idx=precision-length; idx>0; idx--){ in vxprintf()
406 for(idx=precision, rounder=0.4999; idx>0; idx--, rounder*=0.1); in vxprintf()
409 for(idx=precision, rounder=0.5; idx>0; idx--, rounder*=0.1); in vxprintf()
524 for(idx=1; idx<precision; idx++) buf[idx] = c; in vxprintf()
594 idx = 1+(c!=0); in vxprintf()
595 (*func)(arg,"%",idx); in vxprintf()
[all …]
H A Dinsert.c97 int i, j, idx; /* Loop counters */ in sqliteInsert() local
283 pColumn->a[i].idx = -1; in sqliteInsert()
288 pColumn->a[i].idx = j; in sqliteInsert()
334 pParse->nTab += idx; in sqliteInsert()
383 if( pColumn->a[j].idx==i ) break; in sqliteInsert()
412 pParse->nTab += idx; in sqliteInsert()
456 if( pColumn->a[j].idx==i ) break; in sqliteInsert()
489 for(idx=1, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, idx++){ in sqliteInsert()
517 for(idx=1, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, idx++){ in sqliteInsert()
768 int idx = pIdx->aiColumn[i]; in sqliteGenerateConstraintChecks() local
[all …]
/PHP-5.3/ext/standard/
H A Dmetaphone.c130 int idx; in Lookahead() local
131 for (idx = 0; word[idx] != '\0' && idx < how_far; idx++); in Lookahead()
134 letter_ahead = word[idx]; /* idx will be either == to how_far or in Lookahead()
H A Dhttp.c36 ulong idx; in php_url_encode_hash_ex() local
57 …(key_type = zend_hash_get_current_key_ex(ht, &key, &key_len, &idx, 0, NULL)) != HASH_KEY_NON_EXIST… in php_url_encode_hash_ex()
108 ekey_len = spprintf(&ekey, 0, "%ld", idx); in php_url_encode_hash_ex()
156 ekey_len = spprintf(&ekey, 0, "%ld", idx); in php_url_encode_hash_ex()
/PHP-5.3/ext/mysqlnd/
H A Dmysqlnd_result_meta.c77 *idx = strtol(key, NULL, 10); in mysqlnd_is_key_numeric()
78 if (*idx!=LONG_MIN) { in mysqlnd_is_key_numeric()
82 *idx = strtol(key, NULL, 10); in mysqlnd_is_key_numeric()
83 if (*idx!=LONG_MAX) { in mysqlnd_is_key_numeric()
120 *idx = zend_u_strtol(key, NULL, 10); in mysqlnd_unicode_is_key_numeric()
121 if (*idx!=LONG_MIN) { in mysqlnd_unicode_is_key_numeric()
126 if (*idx!=LONG_MAX) { in mysqlnd_unicode_is_key_numeric()
159 long idx; in MYSQLND_METHOD() local
236 meta->zend_hash_keys[i].key = idx; in MYSQLND_METHOD()
248 &idx))) in MYSQLND_METHOD()
[all …]
/PHP-5.3/tests/lang/
H A Dbug19943.phpt8 $ar[$count]['idx'] = "$count";
12 echo $ar[$count]." -- ".$ar[$count]['idx']."\n";
/PHP-5.3/ext/zip/lib/
H A Dzip_file_get_offset.c54 _zip_file_get_offset(struct zip *za, int idx) in _zip_file_get_offset() argument
59 offset = za->cdir->entry[idx].offset; in _zip_file_get_offset()
/PHP-5.3/ext/mbstring/ucgendat/
H A Ducgendat.c198 ac_uint4 idx; member
806 ncodes[j].idx = ncodes[j - 1].idx; in add_number()
1299 ac_uint4 i, idx, nprops; in write_cdata() local
1333 for (i = idx = 0; i < NUMPROPS; i++) { in write_cdata()
1335 idx += proptbl[i].used; in write_cdata()
1342 propcnt[i] = idx; in write_cdata()
1358 bytes += sizeof(ac_uint4) * idx; in write_cdata()
1602 idx += decomps[i].used; in write_cdata()
1654 idx += decomps[i].used; in write_cdata()
1694 idx += kdecomps[i].used; in write_cdata()
[all …]
/PHP-5.3/ext/mbstring/libmbfl/filters/
H A Dmbfilter_iso2022_jp_ms.c277 int idx; in cp932ext3_cp932ext2_jis() local
279 idx = sjistoidx(0xfa, 0x40) + c; in cp932ext3_cp932ext2_jis()
280 if (idx >= sjistoidx(0xfa, 0x5c)) in cp932ext3_cp932ext2_jis()
281 idx -= sjistoidx(0xfa, 0x5c) - sjistoidx(0xed, 0x40); in cp932ext3_cp932ext2_jis()
282 else if (idx >= sjistoidx(0xfa, 0x55)) in cp932ext3_cp932ext2_jis()
283 idx -= sjistoidx(0xfa, 0x55) - sjistoidx(0xee, 0xfa); in cp932ext3_cp932ext2_jis()
284 else if (idx >= sjistoidx(0xfa, 0x40)) in cp932ext3_cp932ext2_jis()
285 idx -= sjistoidx(0xfa, 0x40) - sjistoidx(0xee, 0xef); in cp932ext3_cp932ext2_jis()
286 return idxtojis1(idx) << 8 | idxtojis2(idx); in cp932ext3_cp932ext2_jis()
/PHP-5.3/ext/spl/tests/
H A Dbug36287.phpt8 $idx = 0;
15 if (++$idx > 1)
H A Dobserver_001.phpt48 $idx = array_search($observer, $this->observers);
49 if ($idx !== false)
51 unset($this->observers[$idx]);
H A Diterator_042.phpt26 $idx = 0;
30 echo '===' . $idx++ . "===\n";
H A Dspl_autoload_008.phpt41 foreach($funcs as $idx => $func)
43 echo "====$idx====\n";
H A Dspl_autoload_007.phpt40 foreach($funcs as $idx => $func)
42 if ($idx) echo "\n";
/PHP-5.3/Zend/
H A Dzend_hash.h315 ulong idx; \ in END_EXTERN_C()
325 idx = (*tmp - '0'); \ in END_EXTERN_C()
327 idx = (idx * 10) + (*tmp - '0'); \ in END_EXTERN_C()
331 if (idx-1 > LONG_MAX) { /* overflow */ \ in END_EXTERN_C()
334 idx = 0 - idx; \ in END_EXTERN_C()
335 } else if (idx > LONG_MAX) { /* overflow */ \ in END_EXTERN_C()
345 ZEND_HANDLE_NUMERIC(arKey, nKeyLength, zend_hash_index_update(ht, idx, pData, nDataSize, pDest));
352 ZEND_HANDLE_NUMERIC(arKey, nKeyLength, zend_hash_index_del(ht, idx)); in zend_symtable_del()
359 ZEND_HANDLE_NUMERIC(arKey, nKeyLength, zend_hash_index_find(ht, idx, pData)); in zend_symtable_find()
366 ZEND_HANDLE_NUMERIC(arKey, nKeyLength, zend_hash_index_exists(ht, idx)); in zend_symtable_exists()
[all …]
/PHP-5.3/ext/zip/tests/
H A Doo_getcomment.phpt19 $idx = $zip->locateName('foo');
21 echo $zip->getCommentIndex($idx);
/PHP-5.3/ext/xmlreader/tests/
H A D004.phpt11 <books><book num="1" idx="2">book1</book></books>';
41 Attribute Name: idx
/PHP-5.3/ext/posix/tests/
H A Dposix_getgrgid.phpt27 foreach ($grp['members'] as $idx => $username) {
28 if (!is_int($idx)) {
/PHP-5.3/ext/spl/
H A Dspl_engine.c50 ZEND_HANDLE_NUMERIC(Z_STRVAL_P(offset), Z_STRLEN_P(offset)+1, idx); in spl_offset_convert_to_long()
/PHP-5.3/ext/gd/libgd/
H A Dgd_jpeg.c241 int idx = im->pixels[i][j]; in gdImageJpegCtx() local
248 row[jidx++] = im->red[idx]; in gdImageJpegCtx()
249 row[jidx++] = im->green[idx]; in gdImageJpegCtx()
250 row[jidx++] = im->blue[idx]; in gdImageJpegCtx()
252 row[jidx++] = im->red[idx] << 4; in gdImageJpegCtx()
253 row[jidx++] = im->green[idx] << 4; in gdImageJpegCtx()
254 row[jidx++] = im->blue[idx] << 4; in gdImageJpegCtx()
/PHP-5.3/ext/spl/internal/
H A Dsplobjectstorage.inc127 foreach($this->storage as $idx => $element)
131 unset($this->storage[$idx]);
159 foreach($this->storage as $idx => $element)
/PHP-5.3/ext/xmlrpc/libxmlrpc/
H A Dqueue.c899 int idx; in Q_Seek() local
910 idx = Q_BSearch(q, data, Comp); in Q_Seek()
912 if(idx < 0) in Q_Seek()
915 q->cursor = posn_index[idx]; in Q_Seek()
917 return index[idx]; in Q_Seek()
/PHP-5.3/ext/com_dotnet/
H A Dcom_typeinfo.c74 int idx; in php_com_load_typelib() local
78 hr = ITypeInfo_GetContainingTypeLib(info, &TL, &idx); in php_com_load_typelib()
294 unsigned int idx; in php_com_locate_typeinfo() local
296 ITypeInfo_GetContainingTypeLib(obj->typeinfo, &typelib, &idx); in php_com_locate_typeinfo()
300 unsigned int idx; in php_com_locate_typeinfo() local
302 ITypeInfo_GetContainingTypeLib(typeinfo, &typelib, &idx); in php_com_locate_typeinfo()
/PHP-5.3/ext/wddx/
H A Dwddx.c300 ulong idx; in PS_SERIALIZER_DECODE_FUNC() local
315 hash_type = zend_hash_get_current_key_ex(Z_ARRVAL_P(retval), &key, &key_length, &idx, 0, NULL); in PS_SERIALIZER_DECODE_FUNC()
319 key_length = slprintf(tmp, sizeof(tmp), "%ld", idx) + 1; in PS_SERIALIZER_DECODE_FUNC()
461 ulong idx; in php_wddx_serialize_object() local
531 if (zend_hash_get_current_key_ex(objhash, &key, &key_len, &idx, 0, NULL) == HASH_KEY_IS_STRING) { in php_wddx_serialize_object()
537 key_len = slprintf(tmp_buf, sizeof(tmp_buf), "%ld", idx); in php_wddx_serialize_object()
561 ulong idx; in php_wddx_serialize_array() local
574 type = zend_hash_get_current_key(target_hash, &key, &idx, 0); in php_wddx_serialize_array()
581 if (idx != ind) { in php_wddx_serialize_array()
604 ent_type = zend_hash_get_current_key_ex(target_hash, &key, &key_len, &idx, 0, NULL); in php_wddx_serialize_array()
[all …]
/PHP-5.3/ext/json/
H A Djson.c142 ulong index, idx; in json_determine_array_type() local
147 idx = 0; in json_determine_array_type()
157 if (index != idx) { in json_determine_array_type()
161 idx++; in json_determine_array_type()

Completed in 85 milliseconds

1234