Searched refs:second (Results 1 - 25 of 177) sorted by path

12345678

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/lib/
H A Dchecksrc.pl171 my $second = length($1);
173 if($expect != $second) {
174 my $diff = $second - $first;
H A Dftp.c342 interval_ms = 1000; /* use 1 second timeout intervals */
493 interval_ms = 1000; /* use 1 second timeout intervals */
500 * timeout at least every second to make the timeout check run.
692 dir) this then allows for a second try to CWD to it */
1772 /* this just dumps information about this second connection */
1882 last .sss part is optional and means fractions of a second */
1883 int year, month, day, hour, minute, second; local
1886 &year, &month, &day, &hour, &minute, &second)) {
1892 year, month, day, hour, minute, second);
3387 * This function only outputs some informationals about this second connectio
[all...]
H A Drawstr.c98 int Curl_raw_equal(const char *first, const char *second) argument
100 while(*first && *second) {
101 if(Curl_raw_toupper(*first) != Curl_raw_toupper(*second))
105 second++;
110 return (Curl_raw_toupper(*first) == Curl_raw_toupper(*second));
113 int Curl_raw_nequal(const char *first, const char *second, size_t max) argument
115 while(*first && *second && max) {
116 if(Curl_raw_toupper(*first) != Curl_raw_toupper(*second)) {
121 second++;
126 return Curl_raw_toupper(*first) == Curl_raw_toupper(*second);
[all...]
H A Drawstr.h35 int Curl_raw_equal(const char *first, const char *second);
36 int Curl_raw_nequal(const char *first, const char *second, size_t max);
H A Dssluse.c993 int year=0,month=0,day=0,hour=0,minute=0,second=0; local
1020 second= (asn1_string[10]-'0')*10+(asn1_string[11]-'0');
1024 year+1900, month, day, hour, minute, second, (gmt?"GMT":""));
H A Dstrequal.c34 int curl_strequal(const char *first, const char *second) argument
37 return !(strcasecmp)(first, second);
39 return !(strcmpi)(first, second);
41 return !(stricmp)(first, second);
43 while(*first && *second) {
44 if(toupper(*first) != toupper(*second)) {
48 second++;
50 return toupper(*first) == toupper(*second);
57 int curl_strnequal(const char *first, const char *second, size_t max) argument
60 return !strncasecmp(first, second, ma
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/tests/
H A Dgetpart.pm174 my $second = join("", @$secondref);
183 if($first ne $second) {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/iproute2/doc/
H A Dapi-ip6-flowlabels.tex247 we cannot lease labels with lifetimes longer than boot time, the second,
H A Dip-cref.tex462 The second line contains information on the link layer addresses
1604 The second line, starting with the word \verb|cache|, shows
1700 The second example flushes all IPv6 cloned routes:
1947 when a second level routing table contains a single default route.
2805 The second feature: it does not touch packet payload,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/iptables-1.4.12.1/extensions/
H A Dlibxt_time.c90 unsigned int month = 1, day = 1, hour = 0, minute = 0, second = 0; local
132 second = strtoul(s, &e, 10);
133 if (*e != '\0' || second > 59)
142 tm.tm_sec = second;
164 unsigned int hour, minute, second = 0; local
179 second = strtoul(s, &e, 10);
180 if (*e != '\0' || second > 59)
184 return 60 * 60 * hour + 60 * minute + second;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/arm/
H A Dsimple_idct_arm.S117 mul r0, r8, r7 @ R0=W1*ROWr16[1]=b0 (ROWr16[1] must be the second arg, to have the possibility to save 1 cycle)
120 mul r1, r9, r7 @ R1=W3*ROWr16[1]=b1 (ROWr16[1] must be the second arg, to have the possibility to save 1 cycle)
122 mul r5, r10, r7 @ R5=W5*ROWr16[1]=b2 (ROWr16[1] must be the second arg, to have the possibility to save 1 cycle)
123 mul r7, r11, r7 @ R7=W7*ROWr16[1]=b3 (ROWr16[1] must be the second arg, to have the possibility to save 1 cycle)
125 mlane r0, r9, r2, r0 @ R0+=W3*ROWr16[3]=b0 (ROWr16[3] must be the second arg, to have the possibility to save 1 cycle)
127 mlane r1, r11, r2, r1 @ R1-=W7*ROWr16[3]=b1 (ROWr16[3] must be the second arg, to have the possibility to save 1 cycle)
128 mlane r5, r8, r2, r5 @ R5-=W1*ROWr16[3]=b2 (ROWr16[3] must be the second arg, to have the possibility to save 1 cycle)
129 mlane r7, r10, r2, r7 @ R7-=W5*ROWr16[3]=b3 (ROWr16[3] must be the second arg, to have the possibility to save 1 cycle)
317 mul r0, r8, r7 @ R0=W1*ROWr16[1]=b0 (ROWr16[1] must be the second arg, to have the possibility to save 1 cycle)
320 mul r1, r9, r7 @ R1=W3*ROWr16[1]=b1 (ROWr16[1] must be the second ar
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/ppc/
H A Dutil_altivec.h100 register vector unsigned char second = vec_ld(offset+15, src); local
102 return vec_perm(first, second, mask);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/vhook/
H A Dfish.c100 static void dorange(const char *s, int *first, int *second, int maxval) argument
102 sscanf(s, "%d-%d", first, second);
105 if (*second > maxval)
106 *second = maxval;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/jpeg-7/
H A Dconfigure450 # line-number line after each line using $LINENO; the second 'sed'
451 # does the real work. The second script uses 'N' to pair each
5516 showlist (The first, second, and third items.);
15094 # line-number line after each line using $LINENO; the second 'sed'
15095 # does the real work. The second script uses 'N' to pair each
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/libvorbis-1.2.3/doc/
H A D01-introduction.tex423 polar representation (where one vector is magnitude and the second
H A D02-bitpacking.tex199 \item The second value is the
H A D05-comment.tex8 The Vorbis text comment header is the second (of three) header
199 The comment header comprises the entirety of the second bitstream
201 generally the only packet on the second page and may not be restricted
202 to within the second bitstream page. The length of the comment header
H A D07-floor1.tex241 values taken from the bitstream. The second step plots the curve
H A Da1-encapsulation-ogg.tex83 The second and third vorbis packets (comment and setup
84 headers) may span one or more pages beginning on the second page of
162 offset is nonzero, the second finished audio packet must flush the
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/libvorbis-1.2.3/vq/
H A Dbookutil.c442 int first=-1,second=-1; local
457 second=membership[j];
459 if(first==-1 || second==-1){
465 least=hist[first]+hist[second];
467 if(membership[j]==first || membership[j]==second){
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/sqlite-3.6.22/
H A Dsqlite3.c1011 ** SQLite uses one of these integer values as the second
1026 ** these integer values as the second argument.
1072 ** The second choice is a Mac OS X style fullsync. The [SQLITE_SYNC_DATAONLY]
1092 ** [sqlite3_file_control()] interface. The second "op" argument is an
1487 ** The second argument to sqlite3_db_config(D,V,...) is the
1528 ** with the exception that if the second argument to xRealloc is zero,
1530 ** deallocation. ^SQLite guarantees that the second argument to
1752 ** size of each lookaside buffer slot and the second is the number of
1792 ** can be passed as the second argument to the [sqlite3_db_config()] interface.
1809 ** lookaside buffer itself using [sqlite3_malloc()]. ^The second argumen
21190 USHORT second, hour, local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/mtools-4.0.10/
H A Dtexinfo.tex1514 % al. a second time, below.
1525 % Read toc second time, this time actually producing the outlines.
2736 % second argument specifying the text to display and an optional third
3024 % at the top of the second. We don't want the ragged left on the second.
3595 % @item first col stuff @tab second col stuff @tab third col
3599 % second col stuff
3602 % @item first col stuff @tab second col stuff
5397 % Now the second mark, after the heading break. No break points
5556 % Now the second mar
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/
H A Do_time.c170 short year, month, day, hour, minute, second, member in struct:vms_vectime
193 result->tm_sec = time_values.second;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/fips/rand/
H A Dfips_rand.c114 static int second; variable
129 second=0;
329 if(second && !memcmp(output,previous,sizeof previous))
336 second=1;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/ms/
H A Dtestss.bat86 echo second generated request is invalid

Completed in 769 milliseconds

12345678