Searched refs:first (Results 1 - 25 of 926) sorted by relevance

1234567891011>>

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/libbb/
H A Dget_last_path_component.c14 char *first = path; local
21 last = first = path;
26 if (*first == '/') {
27 last = first;
31 return first;
H A Dask_confirmation.c10 /* Read a line from stdin. If the first non-whitespace char is 'y' or 'Y',
19 int first = 1; local
25 if (first && !(isspace)(c)) {
26 --first;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/lib/
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))
104 first++;
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)) {
120 first++;
126 return Curl_raw_toupper(*first)
[all...]
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)) {
47 first++;
50 return toupper(*first) == toupper(*second);
57 int curl_strnequal(const char *first, const char *second, size_t max) argument
60 return !strncasecmp(first, secon
[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);
40 /* checkprefix() is a shorter version of the above, used when the first
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/pcp/
H A Dmkheader.pl25 $first = 1;
27 if ($first == 1) {
28 $first = 0;
37 $first = 1;
39 if ($first == 1) {
40 $first = 0;
50 $first = 1;
52 if ($first == 1) {
53 $first = 0;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/alpha/mm/
H A Dextable.c14 search_extable(const struct exception_table_entry *first, argument
18 while (first <= last) {
22 mid = (last - first) / 2 + first;
27 first = mid+1;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm/
H A Dtlbdebug.h14 extern void dump_tlb(int first, int last);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-mips/
H A Dtlbdebug.h14 extern void dump_tlb(int first, int last);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/x86_64/ia32/
H A Dipc32.c15 sys32_ipc(u32 call, int first, int second, int third, argument
26 return sys_semtimedop(first, compat_ptr(ptr), second, NULL);
28 return compat_sys_semtimedop(first, compat_ptr(ptr), second,
31 return sys_semget(first, second, third);
33 return compat_sys_semctl(first, second, third, compat_ptr(ptr));
36 return compat_sys_msgsnd(first, second, third, compat_ptr(ptr));
38 return compat_sys_msgrcv(first, second, fifth, third,
41 return sys_msgget((key_t) first, second);
43 return compat_sys_msgctl(first, second, compat_ptr(ptr));
46 return compat_sys_shmat(first, secon
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/x86_64/mm/
H A Dextable.c12 search_extable(const struct exception_table_entry *first, argument
19 while (first <= last) {
23 mid = (last - first) / 2 + first;
28 first = mid+1;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/util/
H A DErrorBuffer.java5 int first, current; field in class:ErrorBuffer
15 if (current == first)
16 first = (first + 1) % msgs.length;
21 for (int i = first; i != current; i = (i + 1) % msgs.length) {
30 current = first = 0;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/demos/
H A Db64.pl11 if (/^-----BEGIN/) { $first=$_; next; }
18 print "$first$out\n$last\n";
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/demos/
H A Db64.pl11 if (/^-----BEGIN/) { $first=$_; next; }
18 print "$first$out\n$last\n";
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/sh64/mm/
H A Dextable.c42 search_extable(const struct exception_table_entry *first, argument
52 while (first <= last) {
55 mid = (last - first) / 2 + first;
60 first = mid+1;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/frv/mm/
H A Dextable.c19 static inline unsigned long search_one_table(const struct exception_table_entry *first, argument
23 while (first <= last) {
27 mid = (last - first) / 2 + first;
32 first = mid + 1;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/lib/
H A Dextable.c53 search_extable(const struct exception_table_entry *first, argument
57 while (first <= last) {
60 mid = (last - first) / 2 + first;
66 first = mid + 1;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/asn1/
H A Dt_x509a.c70 char oidstr[80], first; local
74 first = 1;
78 if(!first) BIO_puts(out, ", ");
79 else first = 0;
87 first = 1;
91 if(!first) BIO_puts(out, ", ");
92 else first = 0;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/asn1/
H A Dt_x509a.c70 char oidstr[80], first; local
74 first = 1;
78 if(!first) BIO_puts(out, ", ");
79 else first = 0;
87 first = 1;
91 if(!first) BIO_puts(out, ", ");
92 else first = 0;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libiconv-1.11/lib/
H A Dgenflags.c54 int first = 1; local
57 first = 0;
60 if (!first) printf(" | ");
62 first = 0;
65 if (!first) printf(" | ");
67 first = 0;
69 if (first) printf("0");
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/script/
H A Dgap.awk8 first = 0; last = 0; idx = 0;
30 first, last, idx);
33 first = u;
39 first, last, idx); }
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/mtools-4.0.10/
H A Dfat_free.c53 unsigned int first; local
62 first = START(dir);
64 first |= STARTHI(dir) << 16;
65 return fat_free(Dir, first);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/e2fsprogs/old_e2fsprogs/e2p/
H A Dpf.c55 int first = 1; local
60 if (first)
61 first = 0;
72 if (long_opt && first)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/flex/
H A Dnfa.c281 * new = link_machines( first, last );
283 * new - a machine constructed by connecting first to last
284 * first - the machine whose successor is to be last
285 * last - the machine whose predecessor is to be first
287 * note: this routine concatenates the machine first with the machine
288 * last to produce a machine new which will pattern-match first first
293 int link_machines( first, last )
294 int first, last;
296 if ( first
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/mips/jazz/
H A Djazzdma.c43 * the first 16 Mbytes of main memory and declare all
91 * Allocate DMA pagetables using a simple first-fit algorithm
96 int first, last, pages, frame, i; local
118 first = 0;
120 while (entry[first].owner != VDMA_PAGE_EMPTY &&
121 first < VDMA_PGTBL_ENTRIES) first++;
122 if (first + pages > VDMA_PGTBL_ENTRIES) { /* nothing free */
127 last = first + 1;
129 && last - first < page
218 int first, pages, npages; local
[all...]

Completed in 182 milliseconds

1234567891011>>