Searched refs:one (Results 1 - 25 of 325) sorted by relevance

1234567891011>>

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/lib/
H A Dint_sqrt.c13 unsigned long op, res, one; local
18 one = 1UL << (BITS_PER_LONG - 2);
19 while (one > op)
20 one >>= 2;
22 while (one != 0) {
23 if (op >= res + one) {
24 op = op - (res + one);
25 res = res + 2 * one;
28 one /= 4;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/s390/cio/
H A Dschid.h7 __u32 one:1; member in struct:subchannel_id
17 schid->one = 1;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/
H A Dsmbadduser43 foreach one ($argv)
44 echo $one | grep ':' >& /dev/null
49 set unix = `echo $one | awk -F: '{print $1}'`
50 set ntid = `echo $one | awk -F: '{print $2}'`
75 foreach one ($new)
77 echo "ENTER password for $one"
78 smbpasswd $one
H A Dsmbadduser.in43 foreach one ($argv)
44 echo $one | grep ':' >& /dev/null
49 set unix = `echo $one | awk -F: '{print $1}'`
50 set ntid = `echo $one | awk -F: '{print $2}'`
75 foreach one ($new)
77 echo "ENTER password for $one"
78 smbpasswd $one
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/util/
H A Dsp-diff.pl10 %one=&loadfile($ARGV[0]);
17 if (defined($one{$a,8}) && defined($two{$a,8}))
25 $r=$two{$a,$b}/$one{$a,$b}*100;
37 if (defined($one{$a,1}) && defined($two{$a,1}))
39 $r1=($one{$a,1}/$two{$a,1})*100;
40 $r2=($one{$a,2}/$two{$a,2})*100;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/util/
H A Dsp-diff.pl10 %one=&loadfile($ARGV[0]);
17 if (defined($one{$a,8}) && defined($two{$a,8}))
25 $r=$two{$a,$b}/$one{$a,$b}*100;
37 if (defined($one{$a,1}) && defined($two{$a,1}))
39 $r1=($one{$a,1}/$two{$a,1})*100;
40 $r2=($one{$a,2}/$two{$a,2})*100;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavutil/
H A Dsoftfloat.c31 SoftFloat one= av_int2sf(1, 0); local
43 sf1= one;
45 sf1= av_div_sf(one, av_normalize_sf(av_add_sf(one, sf1)));
66 sf1= av_mul_sf(av_add_sf(sf1, one),sf2);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/test/
H A Drep003.tcl105 # Put item one.
106 rep003_put $masterenv A1 a-one
124 rep003_check $clientenv A1 a-one
132 rep003_put $masterenv B1 b-one
145 rep003_check $clientenv A1 a-one
160 rep003_check $clientenv A1 a-one
168 rep003_check $clientenv B1 b-one
177 rep003_put $masterenv C1 c-one
189 rep003_check $clientenv A1 a-one
191 rep003_check $clientenv B1 b-one
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/scripts/
H A Dtrylink32 for one in $BBOX_LIB_LIST; do
33 without_one=`echo " $BBOX_LIB_LIST " | sed "s/ $one / /g" | xargs`
38 echo "Library $one is not needed"
42 echo "Library $one is needed"
47 # If there is no space char, the list has just one lib.
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/
H A Drangecoder.c60 const int64_t one= 1LL<<32; local
68 p= one/2;
70 p8= (256*p + one/2) >> 32; //FIXME try without the one
75 p+= ((one-p)*factor + one/2) >> 32;
83 p= (i*one + 128) >> 8;
84 p+= ((one-p)*factor + one/2) >> 32;
85 p8= (256*p + one/
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/sctp/
H A Dsysctl.c49 static int one = 1; variable
50 static int timer_max = 86400000; /* ms in one day */
64 .extra1 = &one,
75 .extra1 = &one,
86 .extra1 = &one,
97 .extra1 = &one,
119 .extra1 = &one,
148 .extra1 = &one,
159 .extra1 = &one,
170 .extra1 = &one,
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/test/scr024/src/com/sleepycat/collections/test/serial/
H A DStoredClassCatalogTestInit.java29 * Runs part one of the StoredClassCatalogTest. This part is run with the
143 TestSerial one = new TestSerial(null);
144 TestSerial two = new TestSerial(one);
147 one.getStringField());
149 map.put("one", one);
151 one = (TestSerial) map.get("one");
153 assertEquals(one, two.getOther());
154 assertNull(one
[all...]
H A DStoredClassCatalogTest.java155 TestSerial one = (TestSerial) map.get("one");
157 assertNotNull(one);
159 assertEquals(one, two.getOther());
160 assertNull(one.getStringField());
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/tests/
H A Dxgettext-c-717 // one
26 /* this one also counts */ gettext ("3");
30 /* this one is also copied */ nada
57 #. one
63 #. this one also counts
70 #. this one is also copied
H A Dmsgcmp-310 one=first
18 !one=
H A Dxgettext-csharp-314 // \u escapes with more than one u are invalid.
18 // Two backslashes (unlike in Java, where this is just one backslash).
20 // A 6-character string (unlike in Java, where this is just one backslash).
24 // There is only one \u recognition pass.
85 #. \u escapes with more than one u are invalid.
101 #. Two backslashes (unlike in Java, where this is just one backslash).
106 #. A 6-character string (unlike in Java, where this is just one backslash).
107 #. There is only one \u recognition pass.
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/ocsp/
H A Docsp_cl.c84 OCSP_ONEREQ *one = NULL; local
86 if (!(one = OCSP_ONEREQ_new())) goto err;
87 if (one->reqCert) OCSP_CERTID_free(one->reqCert);
88 one->reqCert = cid;
90 !sk_OCSP_ONEREQ_push(req->tbsRequest->requestList, one))
92 return one;
94 OCSP_ONEREQ_free(one);
136 * name of an optional signers certificate and include one
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/camellia/
H A Dcmll_misc.c95 const union { long one; char little; } camellia_endian = {1}; member in union:__anon2908
108 const union { long one; char little; } camellia_endian = {1}; member in union:__anon2909
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/ocsp/
H A Docsp_cl.c84 OCSP_ONEREQ *one = NULL; local
86 if (!(one = OCSP_ONEREQ_new())) goto err;
87 if (one->reqCert) OCSP_CERTID_free(one->reqCert);
88 one->reqCert = cid;
90 !sk_OCSP_ONEREQ_push(req->tbsRequest->requestList, one))
92 return one;
94 OCSP_ONEREQ_free(one);
138 * name of an optional signers certificate and include one
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libgcrypt-1.5.0/tests/
H A Dmpitests.c95 gcry_mpi_t one; local
101 gcry_mpi_scan(&one, GCRYMPI_FMT_USG, ones, sizeof(ones), NULL);
106 gcry_mpi_add(result, one, two);
109 printf("Result of one plus two:\n%s\n", pc);
112 gcry_mpi_add(result, ff, one);
115 printf("Result of ff plus one:\n%s\n", pc);
118 gcry_mpi_release(one);
129 gcry_mpi_t one; local
134 gcry_mpi_scan(&one, GCRYMPI_FMT_USG, ones, sizeof(ones), NULL);
137 gcry_mpi_sub(result, two, one);
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/perlasm/
H A Dx86asm.pl39 Pick one target type from
76 /* Run the C pre-processor over this file with one of the following defined
116 You need to define one of
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/perlasm/
H A Dx86asm.pl41 Pick one target type from
79 /* Run the C pre-processor over this file with one of the following defined
119 You need to define one of
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/test/scr024/src/com/sleepycat/persist/test/
H A DBindingTest.java161 new Basic(1, "one", 2.2, "three"));
169 {"one", "java.lang.String"},
183 private String one; field in class:BindingTest.Basic
189 private Basic(long id, String one, double two, String three) { argument
191 this.one = one;
197 return one;
207 TestCase.assertTrue(nullOrEqual(one, o.one));
210 if (one
624 private Address one; field in class:BindingTest.Embedded
629 Embedded(String id, Address one, Address two) argument
735 private String one; field in class:BindingTest.Subclass
741 Subclass(long id, String one, double two, String three, String subOne, boolean subTwo) argument
784 private String one; field in class:BindingTest.Superclass
788 Superclass(int id, String one) argument
809 UseSuperclass(int id, String one) argument
852 String one; field in class:BindingTest.Abstract
856 Abstract(String one) argument
883 EmbeddedUseAbstract(String one, String two) argument
925 EntityUseAbstract(int id, String one) argument
1064 private String one; field in class:BindingTest.UseCompositeKey
1068 UseCompositeKey(CompositeKey key, String one) argument
1194 private String one; field in class:BindingTest.UseComparableKey
1198 UseComparableKey(ComparableKey key, String one) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/ec/
H A Decp_mont.c119 BIGNUM *one = NULL; local
147 one = BN_new();
148 if (one == NULL) goto err;
149 if (!BN_to_montgomery(one, BN_value_one(), mont, ctx)) goto err;
153 group->field_data2 = one;
154 one = NULL;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/ec/
H A Decp_mont.c201 BIGNUM *one = NULL; local
229 one = BN_new();
230 if (one == NULL) goto err;
231 if (!BN_to_montgomery(one, BN_value_one(), mont, ctx)) goto err;
235 group->field_data2 = one;
236 one = NULL;

Completed in 200 milliseconds

1234567891011>>