Searched refs:place (Results 1 - 25 of 176) sorted by relevance

12345678

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/clib/
H A Dgetopt.c71 static char *place = EMSG; /* option letter processing */ local
85 place = EMSG;
94 if (optreset || !*place) { /* update scanning pointer */
96 if (optind >= nargc || *(place = nargv[optind]) != '-') {
97 place = EMSG;
100 if (place[1] && *++place == '-') { /* found "--" */
102 place = EMSG;
106 if ((optopt = (int)*place++) == (int)':' ||
114 if (!*place)
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/tcpdump-4.4.0/win32/Src/
H A Dgetopt.c63 static char *place = EMSG; /* option letter processing */ local
66 if (optreset || !*place) { /* update scanning pointer */
68 if (optind >= nargc || *(place = nargv[optind]) != '-') {
69 place = EMSG;
72 if (place[1] && *++place == '-') { /* found "--" */
74 place = EMSG;
78 if ((optopt = (int)*place++) == (int)':' ||
86 if (!*place)
95 if (!*place)
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/libpcap-1.4.0/Win32/Src/
H A Dgetopt.c67 static char *place = EMSG; /* option letter processing */ local
70 if (optreset || !*place) { /* update scanning pointer */
72 if (optind >= nargc || *(place = nargv[optind]) != '-') {
73 place = EMSG;
76 if (place[1] && *++place == '-') { /* found "--" */
78 place = EMSG;
82 if ((optopt = (int)*place++) == (int)':' ||
90 if (!*place)
99 if (!*place)
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/ncftp-3.2.5/source/libncftp/
H A Du_getopt.c36 if ((opt->place == NULL) || (opt->place[0] == '\0')) {
38 if (opt->ind >= nargc || *(opt->place = nargv[opt->ind]) != '-')
40 if (opt->place[1] && *++opt->place == '-') { /* found "--" */
46 if (opt->place == NULL)
48 else if ((opt->opt = (int) *opt->place++) == (int) ':')
54 if ((opt->place == NULL) || (opt->place[0] == '\0'))
62 if ((opt->place
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/telephony/
H A Dixj_pcmcia.c58 int i, place; local
72 place = 1;
85 j->serial += (str[i] - 48) * place;
93 j->serial += (str[i] - 55) * place;
101 j->serial += (str[i] - 87) * place;
104 place = place * 0x10;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/libvorbis-1.2.3/examples/
H A Dframeview.pl189 place(-x=>10,-y=>36,-relwidth=>1.0,-relheight=>1.0,
193 place(-x=>-1,-y=>-1,-relx=>1.0,-rely=>1.0,-anchor=>'se');
196 place(-x=>5,-y=>5,-anchor=>'nw');
200 place(-x=>10,-y=>36,-relwidth=>1.0,-relheight=>1.0,
204 place(-x=>5,-y=>5,-anchor=>'nw');
209 place(-x=>-5,-relx=>1.,-y=>$panely,-anchor=>'ne');
216 place(-x=>5,-y=>-5,-rely=>1.,-relwidth=>.2,-width=>-5,-anchor=>'sw');
220 place(-x=>-5,-y=>-5,-relwidth=>.2,-rely=>1.,-width=>-5,-relx=>1.,-anchor=>'se');
224 place(-x=>5,-y=>-5,-relwidth=>.3,-width=>-7,-rely=>1.,-relx=>.2,-anchor=>'sw');
228 place(
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/wget-1.12/src/
H A Dinit.c95 /* List of recognized commands, each consisting of name, place and
104 void *place; member in struct:__anon7562
703 return commands[comind].action (com, val, commands[comind].place);
720 pstring = commands[comind].place;
812 cmd_boolean (const char *com, const char *val, void *place)
830 *(bool *) place = value;
837 cmd_number (const char *com, const char *val, void *place)
839 if (!simple_atoi (val, val + strlen (val), place)
840 || *(int *) place < 0)
851 cmd_number_inf (const char *com, const char *val, void *place)
809 cmd_boolean(const char *com, const char *val, void *place) argument
834 cmd_number(const char *com, const char *val, void *place) argument
848 cmd_number_inf(const char *com, const char *val, void *place) argument
861 cmd_string(const char *com, const char *val, void *place) argument
875 cmd_file(const char *com, const char *val, void *place) argument
899 cmd_directory(const char *com, const char *val, void *place) argument
922 cmd_vector(const char *com, const char *val, void *place) argument
937 cmd_directory_vector(const char *com, const char *val, void *place) argument
1039 cmd_bytes(const char *com, const char *val, void *place) argument
1058 cmd_bytes_sum(const char *com, const char *val, void *place) argument
1076 cmd_time(const char *com, const char *val, void *place) argument
1133 cmd_cert_type(const char *com, const char *val, void *place) argument
1330 cmd_spec_secure_protocol(const char *com, const char *val, void *place) argument
1519 decode_string(const char *val, const struct decode_item *items, int itemcount, int *place) argument
[all...]
H A Dsnprintf.c7 I hereby place my modifications to this file under the public
520 int place = 0; local
552 convert[place++] = digits[uvalue % (unsigned)base];
554 } while(uvalue && (place < sizeof (convert)));
555 if (place == sizeof (convert)) place--;
556 convert[place] = 0;
558 zpadlen = max - place;
559 spadlen = min - MAX (max, place) - (signvalue ? 1 : 0);
571 dprint (1, (debugfile, "zpad: %d, spad: %d, min: %d, max: %d, place
[all...]
H A Dwget.h61 translation is done at a different place in the code. The purpose
252 #define BOUNDED_TO_ALLOCA(beg, end, place) do { \
255 char **BTA_dest = &(place); \
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/x86/kernel/
H A Dtrampoline_32.S42 mov %cs, %ax # Code and data in the same place
H A Dtrampoline_64.S47 mov %cs, %ax # Code and data in the same place
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/netatalk-2.2.5/libatalk/compat/
H A Dsnprintf.c49 or other code remain in place and are present in executable modules
831 int place = 0; local
849 convert[place++] =
854 convert[place] = 0;
855 padlen = len - place;
858 /* fprintf( stderr, "str '%s', place %d, sign %c, padlen %d\n",
859 convert,place,signvalue,padlen); / **/
876 while( place > 0 ) dopr_outch( buffer, left, convert[--place] );
891 int place local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/transmission/transmission-2.73/web/javascript/
H A Dcommon.js62 // so the footer appears in the right place
131 Number.prototype.toTruncFixed = function(place) {
132 var ret = Math.floor(this * Math.pow (10, place)) / Math.pow(10, place);
133 return ret.toFixed(place);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/crypto/bio/
H A Db_print.c488 int place = 0; local
512 convert[place++] =
516 } while (uvalue && (place < (int)sizeof(convert)));
517 if (place == sizeof(convert))
518 place--;
519 convert[place] = 0;
521 zpadlen = max - place;
522 spadlen = min - OSSL_MAX(max, place) - (signvalue ? 1 : 0) - strlen(prefix);
558 while (place > 0)
559 doapr_outch(sbuffer, buffer, currlen, maxlen, convert[--place]);
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/crypto/bio/
H A Db_print.c488 int place = 0; local
514 convert[place++] = (caps ? "0123456789ABCDEF" : "0123456789abcdef")
517 } while (uvalue && (place < (int)sizeof(convert)));
518 if (place == sizeof(convert))
519 place--;
520 convert[place] = 0;
522 zpadlen = max - place;
524 min - OSSL_MAX(max, place) - (signvalue ? 1 : 0) - strlen(prefix);
564 while (place > 0) {
565 if (!doapr_outch(sbuffer, buffer, currlen, maxlen, convert[--place]))
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/crypto/bio/
H A Db_print.c488 int place = 0; local
514 convert[place++] = (caps ? "0123456789ABCDEF" : "0123456789abcdef")
517 } while (uvalue && (place < (int)sizeof(convert)));
518 if (place == sizeof(convert))
519 place--;
520 convert[place] = 0;
522 zpadlen = max - place;
524 min - OSSL_MAX(max, place) - (signvalue ? 1 : 0) - strlen(prefix);
564 while (place > 0) {
565 if (!doapr_outch(sbuffer, buffer, currlen, maxlen, convert[--place]))
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/mips/kernel/
H A Dhead.S44 dsll t1, NASID_SHFT # Shift text nasid into place
50 dsll t1, 6 # Get pfn into place
51 dsll t2, 6 # Get pfn into place
84 /* Fortunately CU 0 is in the same place in both registers */
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/docs/latex/wx/
H A Dminimald.tex3 % the place indicated below.
H A Dmirrordc.tex16 without changes (no mirroring takes place) or exchanges {\it x} and {\it y}
H A Dpowerevt.tex32 event can be vetoed to prevent suspend from taking place.}
64 Call this to prevent suspend from taking place in
H A Dcommand.tex53 Return true to indicate that the action has taken place, false otherwise.
68 Return true to indicate that the action has taken place, false otherwise.
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/curl/curl-7.36.0/tests/data/
H A DMakefile.am140 @mkdir test-place; \
141 cp "$(top_srcdir)"/tests/data/test[0-9]* test-place/; \
142 rm test-place/*~; \
145 rm -f "test-place/$$f"; \
151 ls test-place; \
152 ! ls test-place | grep . >/dev/null ; \
154 rm -rf test-place ; \
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/x86/kernel/acpi/
H A Dwakeup_32.S37 # jump to place where we left off
/netgear-R7000-V1.0.7.12_1.2.5/src/tools/misc/
H A Depi_ttcp.c2732 static char *place = EMSG; /* option letter processing */ local
2735 if (!*place) {
2737 if (optind >= argc || *(place = argv[optind]) != '-' || !*++place) {
2738 place = EMSG;
2741 // place now points to the first char past the initial '-'
2742 if (place[0] == '-') {
2745 if (place[1] == '\0')
2749 place = EMSG;
2755 if ((optopt = (int)*place
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/source/lib/replace/
H A Dsnprintf.c69 * put the ifdef for HAVE_VA_COPY in one place rather than in lots of
803 int place = 0; local
828 convert[place++] =
832 } while(uvalue && (place < 20));
833 if (place == 20) place--;
834 convert[place] = 0;
836 zpadlen = max - place;
837 spadlen = min - MAX (max, place) - (signvalue ? 1 : 0);
848 printf("zpad: %d, spad: %d, min: %d, max: %d, place
[all...]

Completed in 402 milliseconds

12345678