Home
last modified time | relevance | path

Searched refs:j (Results 151 – 175 of 258) sorted by relevance

1234567891011

/PHP-5.6/ext/opcache/
H A Dzend_accelerator_util_funcs.c867 int j = 0; local
869 while (trait_precedences[i]->exclude_from_classes[j]) {
870 j++;
872 exclude_from_classes = emalloc(sizeof(zend_class_entry*) * (j + 1));
873 j = 0;
874 while (trait_precedences[i]->exclude_from_classes[j]) {
875 exclude_from_classes[j] = (zend_class_entry*)estrndup(
876 (char*)trait_precedences[i]->exclude_from_classes[j],
877 strlen((char*)trait_precedences[i]->exclude_from_classes[j]));
878 j++;
[all …]
H A Dzend_persist.c597 int j = 0; local
599 while (ce->trait_precedences[i]->exclude_from_classes[j]) {
600 zend_accel_store(ce->trait_precedences[i]->exclude_from_classes[j],
601 strlen((char*)ce->trait_precedences[i]->exclude_from_classes[j]) + 1);
602 j++;
605 sizeof(zend_class_entry*) * (j + 1));
/PHP-5.6/ext/standard/tests/strings/
H A Daddcslashes_003.phpt38 string(40) "\abcd\e\f\g\h\i\j\k\l\m\n\o\pqrstuvwxy\z"
/PHP-5.6/ext/fileinfo/
H A Dlibmagic.patch198 + int j;
199 + for (j = 0; j < MAGIC_SETS; j++) {
357 uint32_t i, j;
446 for (j = 0; j < MAGIC_SETS; j++) {
907 size_t i, j;
913 for (j = i = 0; sid >= 0; i++, j++) {
981 - for (j = 0; j < nelements; j++, i++) {
982 + for (j = 0; j < nelements && i < sh.sh_properties;
1038 size_t i, j;
2972 - for (j = 0; j < dir.dir_len; j++) {
[all …]
/PHP-5.6/ext/pdo_oci/tests/
H A Dpdo_oci_stream_1.phpt32 lob1 clob := 'abc' || lpad('j',30000,'j') || 'xyz';
/PHP-5.6/ext/spl/
H A Dspl_heap.c277 int i, j; in spl_ptr_heap_delete_top() local
289 for( i = 0; i < limit; i = j) in spl_ptr_heap_delete_top()
292 j = i*2+1; in spl_ptr_heap_delete_top()
293 …if(j != heap->count && heap->cmp(heap->elements[j+1], heap->elements[j], cmp_userdata TSRMLS_CC) >… in spl_ptr_heap_delete_top()
294 j++; /* next child is bigger */ in spl_ptr_heap_delete_top()
298 if(heap->cmp(bottom, heap->elements[j], cmp_userdata TSRMLS_CC) < 0) { in spl_ptr_heap_delete_top()
299 heap->elements[i] = heap->elements[j]; in spl_ptr_heap_delete_top()
/PHP-5.6/tests/lang/
H A D025.phpt7 $j=$nr+1;
8 while ($j < 10) {
10 RekTest($j);
11 $j++;
12 echo " b $j ";
/PHP-5.6/ext/standard/tests/array/
H A Darray_combine.phpt18 $j = array_combine($array3, $array2);
H A Drange.phpt174 string(1) "j"
244 string(1) "j"
/PHP-5.6/ext/mbstring/oniguruma/
H A Dregparse.c597 int i, j; in onig_print_names() local
613 for (j = 0; j < e->back_num; j++) { in onig_print_names()
1155 OnigCodePoint j; in node_new_cclass_by_codepoint_range() local
1959 for (j = 0; j < n2; j++) { in and_code_range_buf()
1960 from2 = data2[j*2]; in and_code_range_buf()
3766 OnigCodePoint j; in add_ctype_to_cc_by_range() local
3773 j <= ONIGENC_CODE_RANGE_TO(mbr, i); j++) { in add_ctype_to_cc_by_range()
3774 if (j >= sb_out) { in add_ctype_to_cc_by_range()
3802 j < ONIGENC_CODE_RANGE_FROM(mbr, i); j++) { in add_ctype_to_cc_by_range()
3803 if (j >= sb_out) { in add_ctype_to_cc_by_range()
[all …]
/PHP-5.6/ext/mssql/
H A Dphp_mssql.c315 int i,j; in _free_result() local
320 for (j=0; j<result->num_fields; j++) { in _free_result()
321 zval_dtor(&result->data[i][j]); in _free_result()
1213 int i, j = 0; local
1224 if (j>0) {
1225 snprintf(computed_buf,16,"computed%d",j);
1230 j++;
1275 for (j=0; j<result->num_fields; j++) {
1276 INIT_ZVAL(result->data[i][j]);
1277 …MS_SQL_G(get_column_content(mssql_ptr, j+1, &result->data[i][j], result->fields[j].type TSRMLS_CC)…
/PHP-5.6/Zend/
H A Dzend_opcode.c259 zend_uint j = 0; in _destroy_zend_class_traits_info() local
261 while (cur_precedence->exclude_from_classes[j]) { in _destroy_zend_class_traits_info()
262 efree(cur_precedence->exclude_from_classes[j]); in _destroy_zend_class_traits_info()
263 j++; in _destroy_zend_class_traits_info()
668 zend_uint i, j; in zend_resolve_finally_calls() local
671 for (i = 0, j = op_array->last; i < j; i++) { in zend_resolve_finally_calls()
H A Dzend_hash.c1370 int i, j; in zend_hash_sort() local
1396 for (j = 1; j < i-1; j++) { in zend_hash_sort()
1397 arTmp[j]->pListLast = arTmp[j-1]; in zend_hash_sort()
1398 arTmp[j]->pListNext = arTmp[j+1]; in zend_hash_sort()
1400 arTmp[j]->pListLast = arTmp[j-1]; in zend_hash_sort()
1401 arTmp[j]->pListNext = NULL; in zend_hash_sort()
/PHP-5.6/ext/standard/tests/file/
H A Dtempnam_variation8-win32.phpt46 $j = $i+1;
47 echo "\n-- Iteration $j --\n";
H A Dtempnam_variation2-win32.phpt47 $j = $i+1;
48 echo "\n-- Iteration $j --\n";
H A Dtempnam_variation2.phpt47 $j = $i+1;
48 echo "\n-- Iteration $j --\n";
/PHP-5.6/ext/pcre/pcrelib/testdata/
H A Dtestoutput397 Q R S T U V W X Y Z _ a b c d e f g h i j k l m n o p q r s t u v w x y z
106 Q R S T U V W X Y Z _ a b c d e f g h i j k l m n o p q r s t u v w x y z
H A Dtestinput1129 …KijUKghQw\^\\vea3a\?kka_G\$8\#\`\*kynsxzBLru\'\]k_\[7FrVx\}\^\=\$blx\>s\-N\%j\;D\*aZDnsw\:YKZ\%Q\.…
31 …KijUKghQw\^\\vea3a\?kka_G\$8\#\`\*kynsxzBLru\'\]k_\[7FrVx\}\^\=\$blx\>s\-N\%j\;D\*aZDnsw\:YKZ\%Q\.…
/PHP-5.6/ext/date/tests/
H A DDateTime_format_error.phpt23 $format = "F j, Y, g:i a";
H A Dgmdate_variation3.phpt21 'Day without leading zeros' => 'j',
H A Dmktime_basic1.phpt5 …") [, int $second= date("s") [, int $month= date("n") [, int $day= date("j") [, int $year= dat…
H A Dmktime_error.phpt5 …") [, int $second= date("s") [, int $month= date("n") [, int $day= date("j") [, int $year= dat…
H A Dstrftime_variation7.phpt22 'Day of the year as a decimal number' => "%j",
H A Dgmstrftime_variation7.phpt21 'Day of the year as a decimal number' => "%j",
/PHP-5.6/ext/mysql/
H A Dconfig.m47 for j in `echo $str`; do
8 if test -r $j; then

Completed in 77 milliseconds

1234567891011