Searched refs:dot (Results 1 - 25 of 87) sorted by relevance

1234

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/lib/
H A Dcurl_gethostname.c66 char* dot;
97 dot = strchr(name, '.');
98 if(dot)
99 *dot = '\0';
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-runtime/gnulib-lib/
H A Dlocalcharset.c317 /* If the locale name contains an encoding after the dot, return
319 const char *dot = strchr (locale, '.'); local
321 if (dot != NULL)
325 dot++;
327 modifier = strchr (dot, '@');
329 return dot;
330 if (modifier - dot < sizeof (buf))
332 memcpy (buf, dot, modifier - dot);
333 buf [modifier - dot]
402 const char *dot = strchr (locale, '.'); local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-runtime/intl/
H A Dlocalcharset.c318 /* If the locale name contains an encoding after the dot, return
320 const char *dot = strchr (locale, '.'); local
322 if (dot != NULL)
326 dot++;
328 modifier = strchr (dot, '@');
330 return dot;
331 if (modifier - dot < sizeof (buf))
333 memcpy (buf, dot, modifier - dot);
334 buf [modifier - dot]
403 const char *dot = strchr (locale, '.'); local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/
H A Dlocalcharset.c317 /* If the locale name contains an encoding after the dot, return
319 const char *dot = strchr (locale, '.'); local
321 if (dot != NULL)
325 dot++;
327 modifier = strchr (dot, '@');
329 return dot;
330 if (modifier - dot < sizeof (buf))
332 memcpy (buf, dot, modifier - dot);
333 buf [modifier - dot]
402 const char *dot = strchr (locale, '.'); local
[all...]
H A Daddext.c76 char *dot = strchr (s, '.'); local
77 if (dot)
79 slen -= dot + 1 - s;
80 s = dot + 1;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/libgettextpo/
H A Dlocalcharset.c317 /* If the locale name contains an encoding after the dot, return
319 const char *dot = strchr (locale, '.'); local
321 if (dot != NULL)
325 dot++;
327 modifier = strchr (dot, '@');
329 return dot;
330 if (modifier - dot < sizeof (buf))
332 memcpy (buf, dot, modifier - dot);
333 buf [modifier - dot]
402 const char *dot = strchr (locale, '.'); local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libiconv-1.11/libcharset/lib/
H A Dlocalcharset.c324 /* If the locale name contains an encoding after the dot, return
326 const char *dot = strchr (locale, '.'); local
328 if (dot != NULL)
332 dot++;
334 modifier = strchr (dot, '@');
336 return dot;
337 if (modifier - dot < sizeof (buf))
339 memcpy (buf, dot, modifier - dot);
340 buf [modifier - dot]
409 const char *dot = strchr (locale, '.'); local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/ppp-2.4.4/pppd/plugins/pppoatm/
H A Dtext2atm.c28 if (!*text) return FATAL; /* empty or ends with a dot */
54 if (*text++ != '.') return FATAL; /* dot required */
78 int count,pos,dot; local
82 count = dot = 0;
86 dot = 1;
89 else if (!dot) return FATAL; /* two dots in a row */
90 else dot = 0;
96 if (!dot || *text == '0') return FATAL;
114 for (dot = 0; *text; text++)
122 dot
163 int i,dot,result; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gnulib-local/lib/
H A Daddext.c76 char *dot = strchr (s, '.'); local
77 if (dot)
79 slen -= dot + 1 - s;
80 s = dot + 1;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/mtools-4.0.10/
H A Dmkmanifest.c67 int i, dot; local
74 dot = 0;
76 if (buf[i] == '.' && !dot) {
77 dot = 1;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/editors/
H A Dvi.c87 S_BEFORE_WS = 1, // used in skip_thing() for moving "dot"
88 S_TO_WS = 2, // used in skip_thing() for moving "dot"
89 S_OVER_WS = 3, // used in skip_thing() for moving "dot"
90 S_END_PUNCT = 4, // used in skip_thing() for moving "dot"
91 S_END_ALNUM = 5, // used in skip_thing() for moving "dot"
130 //static char *dot; // where all the action takes place
172 char *dot; // where all the action takes place member in struct:globals
192 #define dot (G.dot ) macro
208 static void sync_cursor(char *, int *, int *); // synchronize the screen cursor to dot
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/libvorbis-1.2.3/vq/
H A Drun.c85 char *dot; local
88 dot=strrchr(name,'.');
89 if(dot)
90 ext=dot+1;
114 dot=strrchr(basename,'.');
115 if(dot)*dot='\0';
H A Dlatticepare.c183 char *dot; local
186 dot=strrchr(name,'.');
187 if(dot)
188 ext=dot+1;
203 dot=strrchr(basename,'.');
204 if(dot)*dot='\0';
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/
H A Dfilesystems.c220 const char *dot = strchr(name, '.'); local
221 unsigned len = dot ? dot - name : strlen(name);
236 if (dot && fs && !(fs->fs_flags & FS_HAS_SUBTYPE)) {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/src/
H A Dhostname.c319 char *dot; local
335 /* Print only the part before the first dot. */
336 dot = strchr (hostname, '.');
337 if (dot != NULL)
338 *dot = '\0';
H A Dmsginit.c678 const char *dot; local
682 dot = strchr (locale, '.');
683 if (dot != NULL)
688 codeset_end = strpbrk (dot + 1, "_@");
690 codeset_end = dot + strlen (dot);
693 memcpy (shorter_locale, locale, dot - locale);
694 strcpy (shorter_locale + (dot - locale), codeset_end);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/dnsmasq-2.15/src/
H A Disc.c60 char token[MAXTOK], *dot; local
177 if ((dot = strchr(hostname, '.')))
179 if (!suffix || hostname_isequal(dot+1, suffix))
188 *dot = 0;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/examples/LDAP/
H A Dsamba-schema-netscapeds5.x2 ## Darren Chew <darren.chew at vicscouts dot asn dot au>
3 ## Andre Fiebach <andre dot fiebach at stud dot uni-rostock dot de>
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/parisc/kernel/
H A Dmodule.c89 static inline int in_local_section(struct module *me, void *loc, void *dot) argument
91 return (in_init(me, loc) && in_init(me, dot)) ||
92 (in_core(me, loc) && in_core(me, dot));
479 Elf32_Addr dot; local
497 //dot = (sechdrs[relsec].sh_addr + rel->r_offset) & ~0x03;
498 dot = (Elf32_Addr)loc & ~0x03;
544 val = (val - dot - 8)/4;
554 val = (val - dot - 8)/4;
583 Elf64_Addr dot; local
599 //dot
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/zebra/bgpd/
H A Dbgp_ecommunity.c256 int dot = 0;
336 if (dot)
357 dot++;
358 if (dot > 4)
375 if (dot)
255 int dot = 0; local
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/apps/
H A Ds_server.c1312 int i,j,k,blank,dot; local
1524 dot = 1;
1530 switch (dot)
1533 dot = (e[0] == '.') ? 2 : 0;
1536 dot = (e[0] == '.') ? 3 : 0;
1539 dot = (e[0] == '/') ? -1 : 0;
1542 if (dot == 0)
1543 dot = (e[0] == '/') ? 1 : 0;
1545 dot = (dot
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/apps/
H A Ds_server.c1580 int i,j,k,blank,dot; local
1794 dot = 1;
1800 switch (dot)
1803 dot = (e[0] == '.') ? 2 : 0;
1806 dot = (e[0] == '.') ? 3 : 0;
1809 dot = (e[0] == '/') ? -1 : 0;
1812 if (dot == 0)
1813 dot = (e[0] == '/') ? 1 : 0;
1815 dot = (dot
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/modutils/
H A Dmodprobe.c375 char *dot = col; local
395 dot = col - 3;
398 dot = col - 2;
400 mod = xstrndup(mods, dot - mods);
H A Dinsmod.c859 ElfW(Addr) dot = targsec->header.sh_addr + rel->r_offset;
898 *loc += got - dot;
935 v -= dot + 2;
943 v -= dot + 1;
962 *loc += v - dot;
975 *loc += got - dot;
993 /* dot is the address of the current instruction.
1006 * because dot points to the IMM insn, but branch
1009 temp += v - dot - 4;
1068 v -= dot;
3156 unsigned long dot = 0; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/media/video/pwc/
H A Dpwc-if.c1936 char *s, *colon, *dot; local
1946 colon = dot = s;
1949 while (*dot != '\0' && *dot != '.')
1950 dot++;
1952 if (*dot != '\0' && dot > colon) {
1953 PWC_ERROR("Malformed camera hint: the colon must be after the dot.\n");
1959 if (*dot != '\0') {
1972 if (*dot !
[all...]

Completed in 355 milliseconds

1234