Searched refs:value (Results 1 - 25 of 3134) sorted by relevance

1234567891011>>

/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/util/
H A DPackedInteger.java20 * of additional bytes. The additional bytes store (abs(value) - 119) as an
40 * The maximum number of bytes needed to store an int value (5).
45 * The maximum number of bytes needed to store a long value (9).
74 int value = buf[off++] & 0xFF;
76 value |= (buf[off++] & 0xFF) << 8;
78 value |= (buf[off++] & 0xFF) << 16;
80 value |= (buf[off++] & 0xFF) << 24;
85 return negative ? (-value - 119) : (value + 119);
113 long value
195 writeInt(byte[] buf, int offset, int value) argument
247 writeLong(byte[] buf, int offset, long value) argument
319 getWriteIntLength(int value) argument
349 getWriteLongLength(long value) argument
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/gdbm-1.8.3/
H A Dhash.c36 /* This hash function computes a 31 bit value. The value is used to index
38 to find the home position of the element by taking the value modulo the
45 unsigned int value; /* Used to compute the hash value. */ local
49 /* Set the initial value from key. */
50 value = 0x238F13AF * key.dsize;
52 value = (value + (key.dptr[index] << (index*5 % 24))) & 0x7FFFFFFF;
54 value
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/arch/m68k/mac/
H A Dbootparse.c26 char *value; local
30 value=name;
31 while(*value!='='&&*value)
32 value++;
33 if(*value=='=')
34 *value++=0;
35 env=value;
40 mac_bi_data.boottime=atol(value);
42 mac_bi_data.gmtbias=atol(value);
80 char *value; local
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/prebuilt/WW/www/
H A DRU_mac_spoof.js7 the_mac=cf.Spoofmac.value;
11 cf.Spoofmac.value = tmp_mac;
16 cf.Spoofmac.value=tmp_mac;
18 if (maccheck_multicast(cf.Spoofmac.value) == false)
20 parent.Spoofmac=cf.Spoofmac.value;
24 cf.submit_wan.value = parent.isp_type;
33 //parent.mac_spoof=cf.MACAssign.value;
37 cf.basic_type.value="1";
38 cf.ppp_login_type.value="0";
39 cf.welcome_wan_type.value
[all...]
H A DRU_welcome.js6 cf.ether_ipaddr.value=parent.static_ip;
7 cf.ether_subnet.value=parent.static_subnet;
8 cf.ether_gateway.value=parent.static_gateway;
9 cf.ether_dnsaddr1.value=parent.static_dns1;
10 cf.ether_dnsaddr2.value=parent.static_dns2;
11 cf.DNSAssign.value="1";
12 cf.system_name.value=parent.account_name;
13 cf.domain_name.value="";
14 cf.WANAssign.value="static";
19 cf.submit_wan.value
[all...]
H A Dbas_ether.js31 if(cf.system_name.value=="")
36 for(i=0;i<cf.system_name.value.length;i++)
38 if(isValidChar_space(cf.system_name.value.charCodeAt(i))==false)
44 for(i=0;i<cf.domain_name.value.length;i++)
46 if(isValidDdnsHost(cf.domain_name.value.charCodeAt(i))==false)
55 cf.run_test.value="test";
60 cf.run_test.value="no";
68 cf.ether_ipaddr.value=cf.WPethr1.value+'.'+cf.WPethr2.value
[all...]
H A Dbas_pptp.js5 if((cf.myip_1.value.length>0)&&(cf.myip_2.value.length>0)&&(cf.myip_3.value.length>0)&&(cf.myip_4.value.length>0))
20 var serv_array=cf.pptp_serv_ip.value.split('.');
29 if (checkipaddr(cf.pptp_serv_ip.value) == false)
37 else if (cf.pptp_serv_ip.value.length > 0)
55 if(cf.pptp_username.value=="")
60 for(i=0;i<cf.pptp_username.value.length;i++)
62 if(isValidChar(cf.pptp_username.value
[all...]
H A Dbas_l2tp.js5 if((cf.myip_1.value.length>0)&&(cf.myip_2.value.length>0)&&(cf.myip_3.value.length>0)&&(cf.myip_4.value.length>0))
20 var serv_array=cf.l2tp_serv_ip.value.split('.');
29 if (checkipaddr(cf.l2tp_serv_ip.value) == false)
37 else if (cf.l2tp_serv_ip.value.length > 0)
55 if(cf.l2tp_username.value=="")
60 for(i=0;i<cf.l2tp_username.value.length;i++)
62 if(isValidChar(cf.l2tp_username.value
[all...]
H A Dbas_pppoe.js31 cf.pppoe_dual_ipaddr.value=cf.Duethr1.value+'.'+cf.Duethr2.value+'.'+cf.Duethr3.value+'.'+cf.Duethr4.value;
32 cf.pppoe_dual_subnet.value=cf.DuMask1.value+'.'+cf.DuMask2.value+'.'+cf.DuMask3.value+'.'+cf.DuMask4.value;
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/libid3tag-0.15.0b/
H A Dparse.c43 signed long value = 0; local
48 value = ~0;
51 case 4: value = (value << 8) | *(*ptr)++;
52 case 3: value = (value << 8) | *(*ptr)++;
53 case 2: value = (value << 8) | *(*ptr)++;
54 case 1: value = (value <<
62 unsigned long value = 0; local
78 unsigned long value = 0; local
93 id3_parse_immediate(id3_byte_t const **ptr, unsigned int bytes, char *value) argument
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/packages/libid3tag-0.15.0b/
H A Dparse.c43 signed long value = 0; local
48 value = ~0;
51 case 4: value = (value << 8) | *(*ptr)++;
52 case 3: value = (value << 8) | *(*ptr)++;
53 case 2: value = (value << 8) | *(*ptr)++;
54 case 1: value = (value <<
62 unsigned long value = 0; local
78 unsigned long value = 0; local
93 id3_parse_immediate(id3_byte_t const **ptr, unsigned int bytes, char *value) argument
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/openssl-0.9.8e/crypto/asn1/
H A Da_utf8.c67 * to the string and the length of the string. It sets 'value' to the value of
79 unsigned long value; local
84 /* Check syntax and work out the encoded value (if correct) */
86 value = *p++ & 0x7f;
91 value = (*p++ & 0x1f) << 6;
92 value |= *p++ & 0x3f;
93 if(value < 0x80) return -4;
99 value = (*p++ & 0xf) << 12;
100 value |
155 UTF8_putc(unsigned char *str, int len, unsigned long value) argument
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/openssl/crypto/asn1/
H A Da_utf8.c67 * to the string and the length of the string. It sets 'value' to the value of
79 unsigned long value; local
84 /* Check syntax and work out the encoded value (if correct) */
86 value = *p++ & 0x7f;
91 value = (*p++ & 0x1f) << 6;
92 value |= *p++ & 0x3f;
93 if(value < 0x80) return -4;
99 value = (*p++ & 0xf) << 12;
100 value |
155 UTF8_putc(unsigned char *str, int len, unsigned long value) argument
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/test/scr024/src/com/sleepycat/collections/test/
H A DTestEntity.java17 int value; field in class:TestEntity
19 TestEntity(int key, int value) { argument
22 this.value = value;
29 return e.key == key && e.value == value;
42 return "[key " + key + " value " + value + ']';
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/curl-7.23.1/lib/
H A Dstrtoofft.c52 * value from the given input string and returns it.
61 curl_off_t value = 0; local
108 value = 0;
113 newval = base * value + i;
114 if(newval < value) {
120 value = newval;
126 value *= -1;
131 value = CURL_OFF_T_MIN;
133 value = CURL_OFF_T_MAX;
141 return value;
157 int value = -1; local
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/gettext-0.17/gettext-tools/libgettextpo/
H A Dtls.c46 void *value; local
48 if (thr_getspecific (key, &value) != 0)
50 return value;
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/
H A Dtls.c46 void *value; local
48 if (thr_getspecific (key, &value) != 0)
50 return value;
H A Dxsetenv.h25 If REPLACE is nonzero, overwrite an existing value.
27 extern void xsetenv (const char *name, const char *value, int replace);
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/drivers/media/dvb/dvb-core/
H A Ddvb_math.h28 * computes log2 of a value; the result is shifted left by 24 bits
31 * intlog2(value) = intlog2(value * 2^x) - x * 2^24
37 * @param value The value (must be != 0)
38 * @return log2(value) * 2^24
40 extern unsigned int intlog2(u32 value);
43 * computes log10 of a value; the result is shifted left by 24 bits
46 * intlog10(value) = intlog10(value * 1
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/collections/
H A DMapEntryParameter.java32 private Object value; field in class:MapEntryParameter
35 * Creates a map entry with a given key and value.
39 * @param value is the value to use.
41 public MapEntryParameter(Object key, Object value) { argument
44 this.value = value;
56 ((value == null) ? 0 : value.hashCode());
75 ((value
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/include/asm-mips/
H A Dgpio.h22 int gpio_direction_output(unsigned pin, int value);
25 void gpio_set_value(unsigned int gpio, int value);
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/include/linux/
H A Dhwmon.h24 static inline int SENSORS_LIMIT(long value, long low, long high) argument
26 if (value < low)
28 else if (value > high)
31 return value;
H A Dm48t86.h14 void (*writebyte)(unsigned char value, unsigned long addr);
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/include/asm/
H A Dgpio.h22 int gpio_direction_output(unsigned pin, int value);
25 void gpio_set_value(unsigned int gpio, int value);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/
H A Dcelp_math.h32 * @return value of (1<<15) * cos(arg * PI / (1<<14)), -0x8000 <= result <= 0x7fff
40 * @return value of (1<<20) * exp2(power / (1<<15))
47 * @param value function argument, 0 < value <= 7fff ffff
49 * @return value of (1<<15) * log2(value)
51 int ff_log2(uint32_t value);
54 * Shift value left or right depending on sign of offset parameter.
55 * @param value value t
60 bidir_sal(int value, int offset) argument
[all...]

Completed in 272 milliseconds

1234567891011>>