HomeSort by relevance Sort by last modified time
    Searched refs:one (Results 26 - 50 of 2053) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/icu/icu4c/source/test/intltest/
listformattertest.cpp 22 one("Alice", -1, US_INV), two("Bob", -1, US_INV),
37 void ListFormatterTest::CheckFourCases(const char* locale_string, UnicodeString one, UnicodeString two,
45 UnicodeString input1[] = {one};
48 UnicodeString input2[] = {one, two};
51 UnicodeString input3[] = {one, two, three};
54 UnicodeString input4[] = {one, two, three, four};
58 UBool ListFormatterTest::RecordFourCases(const Locale& locale, UnicodeString one, UnicodeString two,
66 UnicodeString input1[] = {one};
68 UnicodeString input2[] = {one, two};
70 UnicodeString input3[] = {one, two, three}
    [all...]
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_tanh.c 43 static const double one = 1.0, two = 2.0, tiny = 1.0e-300, huge = 1.0e300; variable
56 if (jx>=0) return one/x+one; /* tanh(+-inf)=+-1 */
57 else return one/x-one; /* tanh(NaN) = NaN */
63 if(huge+x>one) return x; /* tanh(tiny) = tiny with inexact */
67 z = one - two/(t+two);
74 z = one - tiny; /* raise inexact flag */
s_tanhf.c 22 static const float one=1.0, two=2.0, tiny = 1.0e-30, huge = 1.0e30; variable
34 if (jx>=0) return one/x+one; /* tanh(+-inf)=+-1 */
35 else return one/x-one; /* tanh(NaN) = NaN */
41 if(huge+x>one) return x; /* tanh(tiny) = tiny with inexact */
45 z = one - two/(t+two);
52 z = one - tiny; /* raise inexact flag */
  /external/clang/test/PCH/
chain-decls.c 19 struct one x;
20 one();
  /external/elfutils/0.153/src/
sectionhash.c 39 scnhead_compare (struct scnhead *one, struct scnhead *two)
41 int result = strcmp (one->name, two->name);
45 result = one->type - two->type;
49 GElf_Sxword diff = (SH_FLAGS_IMPORTANT (one->flags)
55 result = one->entsize - two->entsize;
59 result = (one->grp_signature == NULL
62 ? 1 : strcmp (one->grp_signature,
66 result = one->kind - two->kind;
  /system/core/libbacktrace/
backtrace_testlib.c 19 int test_level_four(int one, int two, int three, int four,
27 return one + two + three + four;
30 int test_level_three(int one, int two, int three, int four,
32 return test_level_four(one+3, two+6, three+9, four+12, callback_func, data) + 3;
35 int test_level_two(int one, int two, int three, int four,
37 return test_level_three(one+2, two+4, three+6, four+8, callback_func, data) + 2;
40 int test_level_one(int one, int two, int three, int four,
42 return test_level_two(one+1, two+2, three+3, four+4, callback_func, data) + 1;
  /external/chromium_org/third_party/mesa/src/src/glsl/glcpp/tests/
019-define-func-1-arg-multi.c 2 foo(this is more than one word)
054-if-with-macros.c 1 #define one 1 macro
25 #if one > three
30 #if one != five
  /external/clang/test/PCH/Inputs/
chain-decls1.h 3 struct one {}; struct
  /external/compiler-rt/test/asan/TestCases/Helpers/
initialization-nobug-extra.cc 6 static int one = countCalls(); variable
  /external/llvm/test/MC/ELF/
dot-symbol-assignment.s 3 one: label
  /external/mesa3d/src/glsl/glcpp/tests/
019-define-func-1-arg-multi.c 2 foo(this is more than one word)
054-if-with-macros.c 1 #define one 1 macro
25 #if one > three
30 #if one != five
  /external/libcxx/test/language.support/support.limits/limits/round.style/
check_values.pass.cpp 16 typedef char one; typedef
17 struct two {one _[2];};
19 one test(std::float_denorm_style);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/support.limits/limits/round.style/
check_values.pass.cpp 16 typedef char one; typedef
17 struct two {one _[2];};
19 one test(std::float_denorm_style);
  /ndk/tests/device/test-stlport_shared-exception/jni/
label3.cpp 15 __label__ one, two, done; local
16 void *labs[] = { &&one, &&two, &&done };
22 one:
23 printf ("one!\n");
  /ndk/tests/device/test-stlport_static-exception/jni/
label3.cpp 15 __label__ one, two, done; local
16 void *labs[] = { &&one, &&two, &&done };
22 one:
23 printf ("one!\n");
  /external/clang/test/Preprocessor/
macro_fn.c 5 #define one(x) 0 /* expected-note 2 {{defined here}} */ macro
14 one() /* ok */
15 one(a)
16 one(a,) /* expected-error {{too many arguments provided to function-like macro invocation}} \
18 one(a, b) /* expected-error {{too many arguments provided to function-like macro invocation}} */
40 one_dot(x) /* empty ... argument: expected-warning {{must specify at least one argument for '...' parameter of variadic macro}} */
41 one_dot() /* empty first argument, elided ...: expected-warning {{must specify at least one argument for '...' parameter of variadic macro}} */
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/
BTree.java 31 private BTree one; field in class:BTree
52 if (one == null)
53 one = new BTree();
54 branch = one;
63 return one;
  /dalvik/libdex/
DexUtf.h 42 unsigned int one, two, three; local
44 one = *(*pUtf8Ptr)++;
45 if ((one & 0x80) != 0) {
48 if ((one & 0x20) != 0) {
51 return ((one & 0x0f) << 12) |
56 return ((one & 0x1f) << 6) |
60 /* one-byte encoding */
61 return one;
  /external/chromium_org/third_party/skia/experimental/Intersection/
QuadraticParameterization_Test.cpp 33 for (size_t one = 0; one < quadsCount; ++one) {
36 if (!point_on_parameterized_curve(*quads[one], (*quads[two])[inner])) {
38 __FUNCTION__, index, one, two, inner);
41 if (!implicit_matches(*quads[one], *quads[two])) {
43 index, one, two);
  /external/skia/experimental/Intersection/
QuadraticParameterization_Test.cpp 33 for (size_t one = 0; one < quadsCount; ++one) {
36 if (!point_on_parameterized_curve(*quads[one], (*quads[two])[inner])) {
38 __FUNCTION__, index, one, two, inner);
41 if (!implicit_matches(*quads[one], *quads[two])) {
43 index, one, two);
  /external/chromium_org/third_party/webrtc/base/
referencecountedsingletonfactory_unittest.cc 66 rcsf_ptr<MyExistenceWatcher> one(&factory), two(&factory);
68 EXPECT_EQ(one.get(), two.get());
74 rcsf_ptr<MyExistenceWatcher> one(&factory);
75 one.get();
78 one.release();
84 rcsf_ptr<MyExistenceWatcher> one(&factory);
85 one.get();
88 one.get();
94 rcsf_ptr<MyExistenceWatcher> one(&factory);
97 one.release()
    [all...]
  /external/chromium_org/v8/test/mjsunit/
smi-negative-zero.js 31 var one = 1; variable
40 assertEquals(-Infinity, one / (-zero), "one / -0 I");
42 assertEquals(-Infinity, one / (zero * minus_one), "one / -1");
43 assertEquals(-Infinity, one / (minus_one * zero), "one / -0 II");
44 assertEquals(Infinity, one / (zero * zero), "one / 0 I");
45 assertEquals(1, one / (minus_one * minus_one), "one / 1")
    [all...]
  /dalvik/dx/src/com/android/dx/merge/
InstructionTransformer.java 62 public void visit(DecodedInstruction[] all, DecodedInstruction one) {
63 mappedInstructions[mappedAt++] = one;
68 public void visit(DecodedInstruction[] all, DecodedInstruction one) {
69 int stringId = one.getIndex();
71 boolean isJumbo = (one.getOpcode() == Opcodes.CONST_STRING_JUMBO);
73 mappedInstructions[mappedAt++] = one.withIndex(mappedId);
78 public void visit(DecodedInstruction[] all, DecodedInstruction one) {
79 int fieldId = one.getIndex();
81 boolean isJumbo = (one.getOpcode() == Opcodes.CONST_STRING_JUMBO);
83 mappedInstructions[mappedAt++] = one.withIndex(mappedId)
    [all...]

Completed in 726 milliseconds

12 3 4 5 6 7 8 91011>>