HomeSort by relevance Sort by last modified time
    Searched refs:one (Results 1 - 25 of 2539) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGen/
2004-01-01-UnknownInitSize.c 7 struct one struct
13 struct one hobbit = {5, {1, 2, 3}};
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
Cube.java 32 int one = 0x10000; local
34 -one, -one, -one,
35 one, -one, -one,
36 one, one, -one,
    [all...]
  /development/samples/BrowserPlugin/src/com/android/sampleplugin/graphics/
Cube.java 32 int one = 0x10000; local
34 -one, -one, -one,
35 one, -one, -one,
36 one, one, -one,
    [all...]
  /external/webkit/LayoutTests/fast/js/resources/
const.js 16 const one = 1;
21 a = one++;
23 shouldBe("one", "1");
26 a = one--;
28 shouldBe("one", "1");
31 a = ++one;
33 shouldBe("one", "1");
36 a = --one;
38 shouldBe("one", "1");
41 a = one += 2
    [all...]
  /external/valgrind/main/none/tests/x86/
bug126147-x86.c 137 char one[50]; variable
146 check (mystrncpy (one, "abc", 4) == one, 1); /* Returned value. */
147 equal (one, "abc", 2); /* Did the copy go right? */
149 (void) strcpy (one, "abcdefgh");
150 (void) mystrncpy (one, "xyz", 2);
151 equal (one, "xycdefgh", 3); /* Copy cut by count. */
153 (void) strcpy (one, "abcdefgh");
154 (void) mystrncpy (one, "xyz", 3); /* Copy cut just before NUL. */
155 equal (one, "xyzdefgh", 4)
    [all...]
ssse3_misaligned.stderr.exp 1 you should see: "one\ntwo\nthree\n"
2 one
  /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...]
  /external/clang/test/SemaCXX/
gnu-case-ranges.cpp 4 one, enumerator in enum:E
15 case one:
  /external/mesa3d/src/glsl/glcpp/tests/
057-empty-arguments.c 3 #define one(x) success macro
4 one()
040-token-pasting.c 2 paste(one , token)
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/valgrind/main/none/tests/amd64/
ssse3_misaligned.stderr.exp 1 you should see: "one\ntwo\nthree\n"
2 one
  /external/fdlibm/
s_tanh.c 24 * 2. 0 <= x <= 2**-55 : ieee_tanh(x) := x*(one+x)
41 static const double one=1.0, two=2.0, tiny = 1.0e-300; variable
43 static double one=1.0, two=2.0, tiny = 1.0e-300; variable
62 if (jx>=0) return one/x+one; /* ieee_tanh(+-inf)=+-1 */
63 else return one/x-one; /* ieee_tanh(NaN) = NaN */
69 return x*(one+x); /* ieee_tanh(small) = small */
72 z = one - two/(t+two);
79 z = one - tiny; /* raised inexact flag *
    [all...]
  /bionic/libm/src/
s_tanh.c 27 * 2. 0 <= x <= 2**-55 : tanh(x) := x*(one+x)
44 static const double one=1.0, two=2.0, tiny = 1.0e-300; variable
58 if (jx>=0) return one/x+one; /* tanh(+-inf)=+-1 */
59 else return one/x-one; /* tanh(NaN) = NaN */
65 return x*(one+x); /* tanh(small) = small */
68 z = one - two/(t+two);
75 z = one - tiny; /* raised inexact flag */
s_tanhf.c 23 static const float one=1.0, two=2.0, tiny = 1.0e-30, huge = 1.0e30; variable
35 if (jx>=0) return one/x+one; /* tanh(+-inf)=+-1 */
36 else return one/x-one; /* tanh(NaN) = NaN */
42 if(huge+x>one) return x; /* tanh(tiny) = tiny with inexact */
46 z = one - two/(t+two);
53 z = one - tiny; /* raise inexact flag */
  /external/clang/test/PCH/
chain-decls.c 17 struct one x;
18 one();
  /external/elfutils/src/
sectionhash.c 27 scnhead_compare (struct scnhead *one, struct scnhead *two)
29 int result = strcmp (one->name, two->name);
33 result = one->type - two->type;
37 GElf_Xword diff = (SH_FLAGS_IMPORTANT (one->flags)
43 result = one->entsize - two->entsize;
47 result = (one->grp_signature == NULL
50 ? 1 : strcmp (one->grp_signature,
54 result = one->kind - two->kind;
  /external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/jgss/kerberos/
KerberosNameTest.java 2 * Licensed to the Apache Software Foundation (ASF) under one or more
39 KerberosName one = new KerberosName("service@localhost", GSSName.NT_HOSTBASED_SERVICE); local
41 assertEquals(one, another);
43 one = new KerberosName("service@localhost", GSSName.NT_HOSTBASED_SERVICE);
45 assertEquals(one, another);
47 one = new KerberosName("service@localhost", GSSName.NT_USER_NAME);
49 assertEquals(one, another);
51 one = new KerberosName("service@localhost", GSSName.NT_USER_NAME);
53 assertFalse(one.equals(another));
56 one = new KerberosName("service@localhost", KRB5_PRINCIPAL_NAMETYPE)
    [all...]
  /external/clang/test/CodeGenCXX/
debug-info-class.cpp 3 int one; member in struct:A
  /external/clang/test/PCH/Inputs/
chain-decls1.h 3 struct one {}; struct
  /external/clang/test/Preprocessor/
macro_fn.c 5 #define one(x) 0 macro
14 one() /* ok */
15 one(a)
16 one(a,) /* expected-error {{too many arguments provided to function-like macro invocation}} */
17 one(a, b) /* expected-error {{too many arguments provided to function-like macro invocation}} */
  /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/chrome/browser/ui/views/
dom_view_browsertest.cc 28 Widget* one = CreatePopupWindow(); local
31 one->GetRootView()->AddChildView(dom_view);
36 one->Show();
40 one->Hide();
46 Widget* one = CreatePopupWindow(); local
49 one->GetRootView()->AddChildView(dom_view);
54 one->Show();
58 one->GetRootView()->RemoveChildView(dom_view);
62 one->Hide();
68 Widget* one = CreatePopupWindow() local
    [all...]
  /external/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...]

Completed in 321 milliseconds

1 2 3 4 5 6 7 8 91011>>