Searched refs:val (Results 1 - 25 of 3315) sorted by path

1234567891011>>

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/IGMP-PROXY/
H A Dconfigure2356 # Use test -z because SunOS4 sh mishandles braces in ${var-val}.
3791 FILE *f = fopen ("conftest.val", "w");
3825 ac_cv_sizeof_int=`cat conftest.val`
3841 rm -f conftest.val
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/bftpd-1.6.6/
H A Dcommands.c83 va_list val; local
84 va_start(val, format);
85 vsnprintf(buffer, sizeof(buffer), format, val);
86 va_end(val);
2013 {"OPTS", "<sp> string <sp> val", command_opts, STATE_AUTHENTICATED, 0}, // Foxconn added pling 09/16/2009
H A Dlogging.c71 va_list val; local
73 va_start(val, format);
74 vsnprintf(buffer, sizeof(buffer), format, val);
75 va_end(val);
91 va_list val; local
94 va_start(val, format);
95 vsnprintf(buffer, sizeof(buffer), format, val);
96 va_end(val);
H A Dmain.c96 int val; member in union:semun
H A Dmystring.c95 int val = atoi(tok); local
97 return val;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/
H A Dconfigure2009 FILE *f = fopen ("conftest.val", "w");
2035 echo >>conftest.val; read $3 <conftest.val; ac_retval=0
2041 rm -f conftest.val
3270 # Use test -z because SunOS4 sh mishandles braces in ${var-val}.
24326 long long val = 1000LL;
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/docs/examples/
H A Dchkspeed.c147 double val; local
150 res = curl_easy_getinfo(curl_handle, CURLINFO_SIZE_DOWNLOAD, &val);
151 if((CURLE_OK == res) && (val>0))
152 printf("Data downloaded: %0.0f bytes.\n", val);
155 res = curl_easy_getinfo(curl_handle, CURLINFO_TOTAL_TIME, &val);
156 if((CURLE_OK == res) && (val>0))
157 printf("Total download time: %0.3f sec.\n", val);
160 res = curl_easy_getinfo(curl_handle, CURLINFO_SPEED_DOWNLOAD, &val);
161 if((CURLE_OK == res) && (val>0))
162 printf("Average download speed: %0.3f kbyte/sec.\n", val / 102
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/lib/
H A Dconnect.c808 int val = CURL_MAX_WRITE_SIZE + 32; local
813 if(curval > val)
816 setsockopt(sockfd, SOL_SOCKET, SO_SNDBUF, (const char *)&val, sizeof(val));
H A Dinet_pton.c110 unsigned int val = *tp * 10 + (unsigned int)(pch - digits); local
114 if(val > 255)
116 *tp = (unsigned char)val;
160 size_t val; local
171 val = 0;
178 val <<= 4;
179 val |= (pch - xdigits);
194 *tp++ = (unsigned char) (val >> 8) & 0xff;
195 *tp++ = (unsigned char) val & 0xff;
197 val
[all...]
H A Dparsedate.c381 int val; local
395 val = curlx_sltosi(strtol(date, &end, 10));
399 (val <= 1400) &&
411 tzoff = (val/100 * 60 + val%100)*60;
424 yearnum = val/10000;
425 monnum = (val%10000)/100-1; /* month is 0 - 11 */
426 mdaynum = val%100;
430 if((val > 0) && (val<3
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/src/
H A Dtool_getparam.c55 #define GetStr(str,val) do { \
60 if((val)) \
61 *(str) = strdup((val)); \
62 if(!(val)) \
H A Dtool_paramhlp.c161 int str2num(long *val, const char *str) argument
167 *val = num;
185 long proto2num(struct Configurable *config, long *val, const char *str) argument
255 *val &= ~(pp->bit);
258 *val |= pp->bit;
261 *val = pp->bit;
272 *val = 0;
284 * @param val the offset to populate
288 int str2offset(curl_off_t *val, const char *str) argument
291 *val
[all...]
H A Dtool_paramhlp.h34 int str2num(long *val, const char *str);
36 long proto2num(struct Configurable *config, long *val, const char *str);
38 int str2offset(curl_off_t *val, const char *str);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/dnsmasq-2.15/src/
H A Dcache.c62 unsigned int c, val = 0; local
67 val += c + 'a' - 'A';
69 val += c;
72 return hash_table + (val & (hash_size - 1));
H A Ddnsmasq.h287 unsigned char *val; member in struct:dhcp_opt
H A Doption.c21 int val; member in struct:myoption
252 option = opts[i].val;
1084 q = new->val = safe_malloc(new->len);
1109 unsigned int val = atoi(comma+1); local
1110 if (val < 256)
1113 new->val = safe_malloc(1);
1114 *(new->val) = val;
1116 else if (val < 65536)
1119 new->val
[all...]
H A Drfc2131.c57 static unsigned char *option_put(unsigned char *p, unsigned char *end, int opt, int len, unsigned int val);
650 static unsigned char *option_put(unsigned char *p, unsigned char *end, int opt, int len, unsigned int val) argument
661 *(p++) = val >> (8 * (len - (i + 1)));
856 struct in_addr *a = (struct in_addr *)opt->val;
869 memcpy(p, opt->val, opt->len);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/iproute2/include/linux/
H A Dpkt_cls.h205 __u32 val; member in struct:tc_u32_key
227 __u32 val; member in struct:tc_u32_mark
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/iproute2/include/linux/tc_act/
H A Dtc_pedit.h20 __u32 val; /*XOR */ member in struct:tc_pedit_key
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/iproute2/include/linux/tc_ematch/
H A Dtc_em_cmp.h8 __u32 val; member in struct:tcf_em_cmp
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/iproute2/include/
H A Dutils.h77 extern int get_integer(int *val, const char *arg, int base);
78 extern int get_unsigned(unsigned *val, const char *arg, int base);
82 extern int get_u64(__u64 *val, const char *arg, int base);
83 extern int get_u32(__u32 *val, const char *arg, int base);
84 extern int get_u16(__u16 *val, const char *arg, int base);
85 extern int get_s16(__s16 *val, const char *arg, int base);
86 extern int get_u8(__u8 *val, const char *arg, int base);
87 extern int get_s8(__s8 *val, const char *arg, int base);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/iproute2/ip/
H A Diproute.c516 unsigned val = *(unsigned*)RTA_DATA(mxrta[i]); local
518 val *= 1000;
520 val /= 8;
522 val /= 4;
523 if (val >= hz)
524 fprintf(fp, " %ums", val/hz);
526 fprintf(fp, " %.2fms", (float)val/hz);
H A Droutel36 val=$2
37 eval "$key=$val"
H A Dxfrm_state.c143 __u8 val; local
149 if (get_u8(&val, vbuf, 16))
152 alg->alg_key[j] = val;
192 __u8 val = 0; local
194 if (get_u8(&val, *argv, 16))
196 *flags = val;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/iproute2/lib/
H A Dutils.c36 int get_integer(int *val, const char *arg, int base) argument
46 *val = res;
50 int get_unsigned(unsigned *val, const char *arg, int base) argument
60 *val = res;
64 int get_u64(__u64 *val, const char *arg, int base) argument
74 *val = res;
78 int get_u32(__u32 *val, const char *arg, int base) argument
88 *val = res;
92 int get_u16(__u16 *val, const char *arg, int base) argument
102 *val
106 get_u8(__u8 *val, const char *arg, int base) argument
120 get_s16(__s16 *val, const char *arg, int base) argument
134 get_s8(__s8 *val, const char *arg, int base) argument
[all...]

Completed in 189 milliseconds

1234567891011>>