HomeSort by relevance Sort by last modified time
    Searched defs:one (Results 276 - 300 of 387) sorted by null

<<111213141516

  /external/guava/guava-tests/test/com/google/common/primitives/
CharsTest.java 320 List<Character> one = Arrays.asList((char) 1); local
321 assertTrue(Arrays.equals(ARRAY1, Chars.toArray(one)));
DoublesTest.java 304 List<Double> one = Arrays.asList((double) 1); local
305 assertTrue(Arrays.equals(ARRAY1, Doubles.toArray(one)));
FloatsTest.java 296 List<Float> one = Arrays.asList((float) 1); local
297 assertTrue(Arrays.equals(ARRAY1, Floats.toArray(one)));
IntsTest.java 323 List<Integer> one = Arrays.asList((int) 1); local
324 assertTrue(Arrays.equals(ARRAY1, Ints.toArray(one)));
LongsTest.java 303 List<Long> one = Arrays.asList((long) 1); local
304 assertTrue(Arrays.equals(ARRAY1, Longs.toArray(one)));
ShortsTest.java 330 List<Short> one = Arrays.asList((short) 1); local
331 assertTrue(Arrays.equals(ARRAY1, Shorts.toArray(one)));
  /external/icu4c/test/cintltst/
cmsgtst.c 192 int32_t one=0; local
239 umsg_parse(formatter,result,resultLength,&count,&ec,one,two,d2);
251 umsg_parse(formatter,result,resultLength,&count,&ec,&one,&two,&d2);
748 u_uastrcpy(pattern, "The disk {1} contains {0,choice,0#no files|1#one file|1<{0,number} files}");
794 u_uastrcpy(expected, "The disk MyDisk contains one file");
    [all...]
  /external/icu4c/test/intltest/
plurfmts.cpp 274 pluralFmt.applyPattern(UNICODE_STRING_SIMPLE("one{one} other{not one}"), status);
278 UnicodeString one = UNICODE_STRING_SIMPLE("one"); local
279 UnicodeString notOne = UNICODE_STRING_SIMPLE("not one");
284 numResult = one;
329 testPattern = UNICODE_STRING_SIMPLE("one{one} other{other}");
339 testPattern = UNICODE_STRING_SIMPLE("one{one} other{other}")
    [all...]
  /external/libogg/src/
bitwise.c 606 static int one[33]={146,25,44,151,195,15,153,176,233,131,196,65,85,172,47,40, local
652 cliptest(testbuffer1,test1size,0,one,onesize);
  /external/openssl/crypto/bn/
bntest.c 1017 BIGNUM *a,*b,*d,*e,*one; local
1024 one=BN_new();
1025 BN_one(one);
1048 for( ; !BN_is_zero(b) ; BN_sub(b,b,one))
1061 BN_free(one);
    [all...]
  /external/openssl/ssl/
d1_pkt.c 130 { const union { long one; char little; } is_endian = {1}; member in union:__anon12727
545 * When it finishes, one packet has been decoded and can be found in
722 * 'type' is one of the following:
    [all...]
  /external/skia/legacy/src/core/
SkBitmapProcState_matrix_repeat.h 432 SkFixed one PREAMBLE_PARAM_Y) {
435 return (i << 14) | (TILEY_PROCF((f + one), max));
439 SkFixed one PREAMBLE_PARAM_X) {
442 return (i << 14) | (TILEX_PROCF((f + one), max));
454 const SkFixed one = s.fFilterOneX; local
467 fx = SkScalarToFixed(pt.fX) - (one >> 1);
480 *xy++ = PACK_FILTER_X_NAME(fx, maxX, one PREAMBLE_ARG_X);
  /external/skia/legacy/src/opts/
SkBitmapProcState_opts_SSE2.cpp 237 SkFixed one) {
240 return (i << 14) | SkClampMax((f + one) >> 16, max);
253 const SkFixed one = s.fFilterOneX; local
265 fx = SkScalarToFixed(pt.fX) - (one >> 1);
312 *xy++ = ClampX_ClampY_pack_filter(fx, maxX, one);
320 __m128i wide_one = _mm_set1_epi32(one);
343 // SkClampMax(((f+one))>>16,max)
361 *xy++ = ClampX_ClampY_pack_filter(fx, maxX, one);
531 // SkClampMax(((f+one))>>16,max)
  /external/skia/src/effects/
SkColorMatrixFilter.cpp 138 int32_t one = SK_Fixed1; local
147 one >>= bits;
152 (array[18] - one) | array[19]);
162 int32_t needsScale = (array[0] - one) | // red axis
163 (array[6] - one) | // green axis
164 (array[12] - one); // blue axis
  /external/skia/src/opts/
SkBitmapProcState_matrix_repeat_neon.h 399 SkFixed one PREAMBLE_PARAM_Y) {
402 return (i << 14) | (TILEY_PROCF((f + one), max));
406 SkFixed one PREAMBLE_PARAM_X) {
409 return (i << 14) | (TILEX_PROCF((f + one), max));
421 const SkFixed one = s.fFilterOneX; local
434 fx = SkScalarToFixed(pt.fX) - (one >> 1);
447 *xy++ = PACK_FILTER_X_NAME(fx, maxX, one PREAMBLE_ARG_X);
SkBitmapProcState_opts_SSE2.cpp 237 SkFixed one) {
240 return (i << 14) | SkClampMax((f + one) >> 16, max);
253 const SkFixed one = s.fFilterOneX; local
265 fx = SkScalarToFixed(pt.fX) - (one >> 1);
312 *xy++ = ClampX_ClampY_pack_filter(fx, maxX, one);
320 __m128i wide_one = _mm_set1_epi32(one);
343 // SkClampMax(((f+one))>>16,max)
361 *xy++ = ClampX_ClampY_pack_filter(fx, maxX, one);
531 // SkClampMax(((f+one))>>16,max)
  /external/tremolo/Tremolo/
bitwise.c 557 static int one[33]={146,25,44,151,195,15,153,176,233,131,196,65,85,172,47,40, local
588 cliptest(testbuffer1,test1size,0,one,onesize);
  /external/valgrind/main/memcheck/tests/
str_tester.c 65 char one[50]; variable
123 for (__n = 0; __n < (int) sizeof (one); ++__n) \
124 one[__n] = 'Z'; \
125 fn (one, str); \
126 for (cp = one, __n = 0; __n < n; ++__n, ++cp) \
136 check (strcpy (one, "abcd") == one, 1); /* Returned value. */
137 equal (one, "abcd", 2); /* Basic test. */
139 (void) strcpy (one, "x");
140 equal (one, "x", 3); /* Writeover. *
    [all...]
  /bionic/libc/netbsd/
gethnamaddr.c 232 * same as the one we sent; this just gets the expanded name
446 * Note: we sort even if host can take only one address
448 * address in that case, not some random one
534 const int one = 1; local
542 setsockopt(sock, SOL_SOCKET, SO_REUSEADDR, &one, sizeof(one));
    [all...]
  /bionic/libm/upstream-freebsd/lib/msun/src/
e_lgamma_r.c 73 * Note: one should avoid compute pi*(-x) directly in the
92 one = 1.00000000000000000000e+00, /* 0x3FF00000, 0x00000000 */ variable
195 case 4: y = __kernel_sin(pi*(one-y),zero,0); break;
217 if((ix|lx)==0) return one/zero;
226 return one/zero;
228 if(t==zero) return one/zero; /* -integer */
240 if(ix>=0x3FE76944) {y = one-x; i= 0;}
241 else if(ix>=0x3FCDA661) {y= x-(tc-one); i=1;}
247 else {y=x-one;i=2;}
266 p2 = one+y*(v1+y*(v2+y*(v3+y*(v4+y*v5))))
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
RopTranslator.java 53 * how much position info to preserve; one of the static
90 * @param positionInfo how much position info to preserve; one of the
109 * @param positionInfo how much position info to preserve; one of the
140 * start of the block) as well as one for each interblock
233 * and output of one block.
312 BasicBlock one = blocks.get(i); local
313 Bits.set(workSet, one.getLabel());
360 // This one's already ordered.
366 // Found one!
378 * Trace a path from the chosen block to one of it
388 BasicBlock one = blocks.labelToBlock(label); local
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/
RopTranslator.java 57 * how much position info to preserve; one of the static
94 * @param positionInfo how much position info to preserve; one of the
113 * @param positionInfo how much position info to preserve; one of the
146 * start of the block) as well as one for each interblock
240 * and output of one block.
319 BasicBlock one = blocks.get(i); local
320 Bits.set(workSet, one.getLabel());
367 // This one's already ordered.
373 // Found one!
385 * Trace a path from the chosen block to one of it
395 BasicBlock one = blocks.labelToBlock(label); local
    [all...]
  /dalvik/tests/023-many-interfaces/src/
ManyInterfaces.java 177 Interface001 one; local
  /dalvik/tests/046-reflect/src/
Main.java 50 String one, two, three, four; local
54 one = (String) field.get(instance);
62 System.out.println(" ::: " + one + ":" + two + ":" + three);
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
IdentityHashMap2Test.java 2 * Licensed to the Apache Software Foundation (ASF) under one or more
383 String one = "one"; local
384 String alsoOne = new String(one); // use the new operator to ensure a
390 mapOne.put(one, two);
391 mapFour.put(one, two);
395 mapThree.put(one, alsoTwo);
398 assertTrue("failure of non-equality of IdentityHashMaps one and two",
400 assertTrue("failure of non-equality of IdentityHashMaps one and three",
408 hashMapThree.put(one, alsoTwo)
    [all...]

Completed in 912 milliseconds

<<111213141516