Home
last modified time | relevance | path

Searched refs:count (Results 176 – 200 of 1167) sorted by relevance

12345678910>>...47

/php-src/ext/bcmath/libbcmath/src/
H A Dround.c126 size_t count = num->n_len + num->n_scale - rounded_len - 1; in bc_round() local
128 while ((count > 0) && (*nptr == 0)) { in bc_round()
129 count--; in bc_round()
133 if (count > 0) { in bc_round()
/php-src/tests/lang/
H A Dbug24908.phpt9 if (count($_SERVER)) echo "O";
12 if (count($_SERVER)) echo "K\n";
/php-src/ext/spl/tests/
H A Dspl_iterator_caching_count_basic.phpt2 SPL: Caching iterator count() cache contents
11 echo $i->count()."\n";
H A Ddllist_004.phpt36 echo count($stack)."\n";
37 echo $stack->count()."\n";
45 echo count($stack)."\n";
H A Ddllist_005.phpt36 echo count($queue)."\n";
37 echo $queue->count()."\n";
45 echo count($queue)."\n";
H A Dbug67360.phpt10 var_dump(count($Iterator) === count($array));
H A Dspl_iterator_caching_count_error.phpt2 SPL: Caching iterator count() cache failure
11 $i->count();
/php-src/ext/hash/
H A Dhash_snefru.c140 if ((MAX32 - context->count[1]) < (len * 8)) { in PHP_SNEFRUUpdate()
141 context->count[0]++; in PHP_SNEFRUUpdate()
142 context->count[1] = MAX32 - context->count[1]; in PHP_SNEFRUUpdate()
143 context->count[1] = ((uint32_t) len * 8) - context->count[1]; in PHP_SNEFRUUpdate()
145 context->count[1] += (uint32_t) len * 8; in PHP_SNEFRUUpdate()
178 context->state[14] = context->count[0]; in PHP_SNEFRUFinal()
179 context->state[15] = context->count[1]; in PHP_SNEFRUFinal()
/php-src/ext/standard/tests/array/
H A Dbug30833.phpt9 $count = array_count_values( $foo );
10 var_dump($count);
H A Dbug43505.phpt9 public function count() {
20 $t = count($obj);
/php-src/ext/zlib/tests/
H A Dgzgetc_basic_1.phpt22 $count = 0;
24 $count++;
28 echo "\ncharacters counted=$count\n";
H A Dgzgetc_basic.phpt22 $count = 0;
24 $count++;
28 echo "\ncharacters counted=$count\n";
/php-src/ext/ldap/tests/
H A Dldap_search_variation4.phpt39 ["count"]=>
45 ["count"]=>
50 ["count"]=>
/php-src/Zend/tests/
H A Dbug81076.phpt2 Bug #81076 Invalid implicit binds cause incorrect static var count in closure debug info
5 var_dump(fn() => [$why, $do, $we, $count]);
/php-src/ext/tokenizer/tests/
H A Dtoken_get_all_variation2.phpt22 for($count = 0; $count < count($source); $count++) {
23 echo "-- Iteration ".($count + 1)." --\n";
24 var_dump( token_get_all($source[$count]));
/php-src/ext/pdo_pgsql/tests/
H A Dgetnotify.phpt33 var_dump(count($notify));
41 var_dump(count($notify));
48 var_dump(count($notify));
55 var_dump(count($notify));
62 var_dump(count($notify));
85 var_dump(count($notify));
/php-src/ext/standard/tests/general_functions/
H A Dis_countable_with_classes.phpt10 public function count(): int
12 return count(1, 'foo');
/php-src/ext/date/lib/
H A Dparse_posix.c517 transitions->times[transitions->count ] = trans_begin; in timelib_get_transitions_for_year()
518 transitions->times[transitions->count+1] = trans_end; in timelib_get_transitions_for_year()
519 transitions->types[transitions->count ] = tz->posix_info->type_index_dst_type; in timelib_get_transitions_for_year()
520 transitions->types[transitions->count+1] = tz->posix_info->type_index_std_type; in timelib_get_transitions_for_year()
522 transitions->times[transitions->count+1] = trans_begin; in timelib_get_transitions_for_year()
523 transitions->times[transitions->count ] = trans_end; in timelib_get_transitions_for_year()
524 transitions->types[transitions->count+1] = tz->posix_info->type_index_dst_type; in timelib_get_transitions_for_year()
525 transitions->types[transitions->count ] = tz->posix_info->type_index_std_type; in timelib_get_transitions_for_year()
528 transitions->count += 2; in timelib_get_transitions_for_year()
557 for (i = 1; i < transitions.count; i++) { in timelib_fetch_posix_timezone_offset()
/php-src/ext/standard/tests/strings/
H A Dstrtr_variation1.phpt12 $count = 1;
38 for($index = 0; $index < count($str_arr); $index++) {
39 echo "-- Iteration $count --\n";
49 $count++;
H A Dstrtr_variation2.phpt13 $count = 1;
42 for($index = 0; $index < count($str_arr); $index++) {
43 echo "-- Iteration $count --\n";
53 $count++;
H A Dget_html_translation_table_basic8.phpt11 var_dump( count($tt) );
17 var_dump( count($tt) );
22 var_dump( count($tt) );
28 var_dump( count($tt) );
/php-src/ext/opcache/jit/ir/
H A Dir_strtab.c58 memcpy(strtab->data, old_data, strtab->count * sizeof(ir_strtab_bucket)); in ir_strtab_resize()
61 i = strtab->count; in ir_strtab_resize()
86 for (i = strtab->count; i > 0; i--) { in ir_strtab_grow_buf()
102 strtab->count = 0; in ir_strtab_init()
153 if (UNEXPECTED(strtab->count >= strtab->size)) { in ir_strtab_lookup()
171 strtab->count++; in ir_strtab_lookup()
204 IR_ASSERT(idx >= 0 && (uint32_t)idx < strtab->count); in ir_strtab_str()
211 IR_ASSERT(idx >= 0 && (uint32_t)idx < strtab->count); in ir_strtab_strl()
232 for (i = 0; i < strtab->count; i++) { in ir_strtab_apply()
/php-src/ext/opcache/
H A Dzend_accelerator_util_funcs.h33 void zend_accel_move_user_functions(HashTable *str, uint32_t count, zend_script *script);
34 void zend_accel_move_user_classes(HashTable *str, uint32_t count, zend_script *script);
/php-src/ext/phar/tests/
H A Dbug77322.phpt9 var_dump($zip->count());
13 var_dump($tar->count());
/php-src/ext/standard/tests/filters/
H A Dbug81302.phpt13 $count = strlen(fread($f, 1024));
15 var_dump($count === $pos);

Completed in 33 milliseconds

12345678910>>...47