Searched refs:last (Results 1 - 25 of 1010) 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.c15 char *last; local
17 last = path - 1;
20 if ((*path != '/') && (path > ++last)) {
21 last = first = path;
27 last = first;
29 last[1] = '\0';
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/os/
H A Dos_rpath.c15 * Return the last path separator in the path or NULL if none found.
23 const char *s, *last; local
26 last = NULL;
30 last = s;
34 last = s;
35 return ((char *)last);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/os_vxworks/
H A Dos_vx_rpath.c17 * Return the last path separator in the path or NULL if none found.
23 const char *s, *last; local
45 last = NULL;
49 last = s;
53 last = s;
54 return ((char *)last);
/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/router/busybox-1.x/coreutils/
H A Dseq.c18 double last, increment, i; local
27 last = atof(argv[argc-1]);
34 while ((increment > 0 && i <= last) || (increment < 0 && i >= 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/alpha/mm/
H A Dextable.c15 const struct exception_table_entry *last,
18 while (first <= last) {
22 mid = (last - first) / 2 + first;
29 last = mid-1;
14 search_extable(const struct exception_table_entry *first, const struct exception_table_entry *last, unsigned long value) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/mips/cobalt/
H A Dreset.c20 int state, last, diff; local
29 last = COBALT_KEY_PORT;
36 diff = COBALT_KEY_PORT ^ last;
37 last ^= diff;
39 if((diff & (COBALT_KEY_ENTER | COBALT_KEY_SELECT)) && !(~last & (COBALT_KEY_ENTER | COBALT_KEY_SELECT)))
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/mips/sibyte/cfe/
H A Dconsole.c15 int i, last, written; local
17 for (i=0,last=0; i<count; i++) {
23 written = cfe_write(cfe_cons_handle, &str[last], i-last);
26 last += written;
27 } while (last < i);
32 if (last != count) {
34 written = cfe_write(cfe_cons_handle, &str[last], count-last);
37 last
[all...]
/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;
25 if (u - last > 6)
27 if (last)
30 first, last, idx);
31 idx -= u - last - 1;
35 last = u;
39 first, last, idx); }
H A Dgaptab.awk8 first = 0; last = 0; idx = 0; f = 0;
34 if (u - last > 6)
36 if (last) { idx += last - first + 1; }
41 for (m = last+1; m < u; m++) { fmt(0); }
45 last = u;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/libexif-0.6.19/test/
H A Dtest-sorted.c33 ExifTag last = 0, current; local
34 num = exif_tag_table_count() - 1; /* last entry is a NULL terminator */
37 if (current < last) {
46 last = current;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/mtools-4.0.10/
H A Dexpand.c32 int last; local
53 last=read(pipefd[0], output, len);
56 if(last<0) {
59 return last;
67 int last; local
90 last=safePopenOut(command, ans, EXPAND_BUF-1);
91 if(last<0) {
95 if(last)
96 ans[last-1] = '\0';
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/lib/
H A Dstrtok.h28 char *Curl_strtok_r(char *s, const char *delim, char **last);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/x86_64/mm/
H A Dextable.c13 const struct exception_table_entry *last,
19 while (first <= last) {
23 mid = (last - first) / 2 + first;
30 last = mid-1;
12 search_extable(const struct exception_table_entry *first, const struct exception_table_entry *last, unsigned long value) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/tests/unit/
H A Dunit1308.c46 struct curl_httppost* last = NULL; variable in typeref:struct:curl_httppost
50 rc = curl_formadd(&post, &last, CURLFORM_COPYNAME, "name",
57 fail_unless(post == last, "post and last weren't the same");
59 rc = curl_formadd(&post, &last, CURLFORM_COPYNAME, "htmlcode",
65 rc = curl_formadd(&post, &last, CURLFORM_COPYNAME, "name_for_ptrcontent",
79 post = last = NULL;
81 rc = curl_formadd(&post, &last,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/projects/GNOME/
H A Dtrigger31 last=`/bin/pwd`
34 if test "$last" = "$curr"; then
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/sh64/mm/
H A Dextable.c43 const struct exception_table_entry *last,
52 while (first <= last) {
55 mid = (last - first) / 2 + first;
62 last = mid-1;
42 search_extable(const struct exception_table_entry *first, const struct exception_table_entry *last, unsigned long value) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/frv/mm/
H A Dextable.c20 const struct exception_table_entry *last,
23 while (first <= last) {
27 mid = (last - first) / 2 + first;
34 last = mid - 1;
19 search_one_table(const struct exception_table_entry *first, const struct exception_table_entry *last, unsigned long value) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-um/
H A Dsystem-generic.h18 extern void *switch_to(void *prev, void *next, void *last);
44 extern void *_switch_to(void *prev, void *next, void *last);
45 #define switch_to(prev, next, last) prev = _switch_to(prev, next, last)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.0/libatalk/cnid/
H A DMakefile.am3 SUBDIRS = last cdb dbd tdb
13 LIBCNID_DEPS += last/libcnid_last.la
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.5/libatalk/cnid/
H A DMakefile.am3 SUBDIRS = last cdb dbd tdb
13 LIBCNID_DEPS += last/libcnid_last.la
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/lib/
H A Dextable.c54 const struct exception_table_entry *last,
57 while (first <= last) {
60 mid = (last - first) / 2 + first;
68 last = mid - 1;
53 search_extable(const struct exception_table_entry *first, const struct exception_table_entry *last, unsigned long value) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/util-linux/
H A Ddmesg.c36 int last = '\n'; local
40 if (last == '\n' && buf[in] == '<') in += 3;
41 else putchar(last = buf[in++]);
43 if (last != '\n') putchar('\n');
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/src/
H A Dtool_mfiles.c31 struct multi_files **last,
34 DEBUGASSERT(((*first) && (*last)) || ((!*first) && (!*last)));
36 if(*last)
37 (*last)->next = new;
40 *last = new;
49 * multi_last argument is the address of a pointer to the last element
30 AppendNode(struct multi_files **first, struct multi_files **last, struct multi_files *new) argument

Completed in 354 milliseconds

1234567891011>>