Home
last modified time | relevance | path

Searched refs:index (Results 176 – 200 of 630) sorted by relevance

12345678910>>...26

/PHP-5.5/ext/hash/
H A Dhash_snefru.c47 int b, index, rshift, lshift; in Snefru() local
68 for (index = 0; index < 8; index++) { in Snefru()
69 t0 = tables[2*index+0]; in Snefru()
70 t1 = tables[2*index+1]; in Snefru()
/PHP-5.5/ext/standard/tests/strings/
H A Dstrtr_variation6.phpt80 for($index = 0; $index < count($from_arr); $index++) {
82 $from = $from_arr[$index];
H A Djoin_variation3.phpt49 for($index = 0; $index < count($pieces_arrays); $index ++) {
51 var_dump( join($glue, $pieces_arrays[$index]) );
H A Dstrrev_variation1.phpt61 for( $index = 0; $index < count($strings); $index++ ) {
63 var_dump( strrev($strings[$index]) );
H A Dstrrev_variation2.phpt61 for( $index = 0; $index < count($strings); $index++ ) {
63 var_dump( strrev($strings[$index]) );
H A Dstrtr_variation3.phpt53 for($index = 0; $index < count($str_arr); $index++) {
56 $str = $str_arr[$index]; //getting the array element in 'str' variable
H A Dhtmlspecialchars_decode_variation3.phpt66 for($index =0; $index < count($res_heredoc_strings); $index ++) {
68 var_dump( htmlspecialchars_decode($res_heredoc_strings[$index]) );
H A Dstrip_tags_variation5.phpt72 for($index =0; $index < count($res_heredoc_strings); $index ++) {
74 var_dump( strip_tags($res_heredoc_strings[$index], $quotes) );
H A Dstrtr_variation5.phpt80 for($index = 0; $index < count($strings); $index++) {
82 $str = $strings[$index];
H A Dstrtr_variation7.phpt80 for($index = 0; $index < count($to_arr); $index++) {
82 $to = $to_arr[$index];
H A Dstrrchr_variation10.phpt122 for($index = 0; $index < count($haystacks); $index++) {
124 var_dump( strrchr($haystacks[$index], $needles[$index]) );
H A Dstrncasecmp_variation10.phpt88 for($index = 0; $index < count($values); $index ++) {
90 $str1 = $values[$index];
91 $len = strlen($values[$index]) + 1;
H A Djoin_variation1.phpt90 for($index = 0; $index < count($values); $index ++) {
92 $glue = $values [$index];
H A Dstripos_variation8.phpt29 for($index = 0; $index < count($needles); $index++) {
32 var_dump( stripos($haystack, $needles[$index], $offset) );
H A Dstrrchr_variation2.phpt77 for($index=0; $index<count($needle); $index++) {
79 var_dump( strrchr($haystack, $needle[$index]) );
H A Ducwords_variation3.phpt51 for($index = 0; $index < count($str_array); $index++) {
53 var_dump( ucwords($str_array[$index]) );
/PHP-5.5/ext/phar/tests/
H A Dfile_get_contents.phpt12 $a['index.php'] = '<?php
22 include "index.php";
H A Dreadfile.phpt12 $a['index.php'] = '<?php
22 include "index.php";
H A Dfrontcontroller22.phpt9 REQUEST_URI=/frontcontroller22.php/index.php
10 PATH_INFO=/index.php
H A Dfopen5.2.phpt18 $a['index.php'] = '<?php
32 include "index.php";
42 …txt" is not a file in phar "%sfopen5.2.phar.php" in phar://%sfopen5.2.phar.php/index.php on line %d
/PHP-5.5/ext/gd/tests/
H A Dlibgd00186.phpt24 $index = imagecolorat($im,9,9);
25 $arr = imagecolorsforindex($im, $index);
/PHP-5.5/ext/odbc/
H A Dbirdstep.c64 ZEND_ARG_INFO(0, index)
69 ZEND_ARG_INFO(0, index)
73 ZEND_ARG_INFO(0, index)
78 ZEND_ARG_INFO(0, index)
82 ZEND_ARG_INFO(0, index)
86 ZEND_ARG_INFO(0, index)
90 ZEND_ARG_INFO(0, index)
94 ZEND_ARG_INFO(0, index)
98 ZEND_ARG_INFO(0, index)
233 conn->index = ind; in birdstep_add_conn()
[all …]
/PHP-5.5/main/
H A Drfc1867.c113 if (index) { in normalize_protected_variable()
114 index++; in normalize_protected_variable()
115 s = index; in normalize_protected_variable()
121 while (index) { in normalize_protected_variable()
122 while (*index == ' ' || *index == '\r' || *index == '\n' || *index=='\t') { in normalize_protected_variable()
123 index++; in normalize_protected_variable()
126 indexend = indexend ? indexend + 1 : index + strlen(index); in normalize_protected_variable()
128 if (s != index) { in normalize_protected_variable()
129 memmove(s, index, strlen(index)+1); in normalize_protected_variable()
137 index = s; in normalize_protected_variable()
[all …]
/PHP-5.5/ext/standard/
H A Dsha1.c186 unsigned int i, index, partLen; in PHP_SHA1Update() local
189 index = (unsigned int) ((context->count[0] >> 3) & 0x3F); in PHP_SHA1Update()
197 partLen = 64 - index; in PHP_SHA1Update()
203 ((unsigned char*) & context->buffer[index], (unsigned char*) input, partLen); in PHP_SHA1Update()
209 index = 0; in PHP_SHA1Update()
215 ((unsigned char*) & context->buffer[index], (unsigned char*) & input[i], in PHP_SHA1Update()
227 unsigned int index, padLen; in PHP_SHA1Final() local
241 index = (unsigned int) ((context->count[0] >> 3) & 0x3f); in PHP_SHA1Final()
242 padLen = (index < 56) ? (56 - index) : (120 - index); in PHP_SHA1Final()
/PHP-5.5/ext/phar/tests/cache_list/
H A Dfrontcontroller22.phpt10 REQUEST_URI=/frontcontroller22.php/index.php
11 PATH_INFO=/index.php

Completed in 30 milliseconds

12345678910>>...26