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

1 2 3 4 5 6 7 891011>>

  /frameworks/compile/mclinker/unittests/
RTLinearAllocatorTest.cpp 67 ASSERT_TRUE(1 == pointer->one);
78 ASSERT_TRUE(7 == pointer->one);
87 ASSERT_TRUE(1 == pointer->one);
98 ASSERT_TRUE(7 == pointer->one);
108 pointer->one = i;
114 ASSERT_EQ(counter, (*data).one);
126 pointer->one = counter;
135 ASSERT_EQ(counter, (*data).one);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/
test_install_data.py 24 one = os.path.join(pkg_dir, 'one')
25 self.write_file(one, 'xxx')
30 cmd.data_files = [one, (inst2, [two])]
31 self.assertEqual(cmd.get_inputs(), [one, (inst2, [two])])
41 rone = os.path.split(one)[-1]
45 # let's try with warn_dir one
62 cmd.data_files = [one, (inst2, [two]),
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/
test_install_data.py 24 one = os.path.join(pkg_dir, 'one')
25 self.write_file(one, 'xxx')
30 cmd.data_files = [one, (inst2, [two])]
31 self.assertEqual(cmd.get_inputs(), [one, (inst2, [two])])
41 rone = os.path.split(one)[-1]
45 # let's try with warn_dir one
62 cmd.data_files = [one, (inst2, [two]),
  /bionic/libm/upstream-freebsd/lib/msun/src/
e_j0.c 35 * to compute the worse one.)
69 one = 1.0, variable
92 if(ix>=0x7ff00000) return one/(x*x);
116 if(huge+x>one) { /* raise inexact if x != 0 */
117 if(ix<0x3e400000) return one; /* |x|<2**-27 */
118 else return one - 0.25*x*x;
123 s = one+z*(S01+z*(S02+z*(S03+z*S04)));
125 return one + z*(-0.25+(r/s));
128 return((one+u)*(one-u)+z*(r/s))
    [all...]
e_j0f.c 26 one = 1.0, variable
49 if(ix>=0x7f800000) return one/(x*x);
73 if(huge+x>one) { /* raise inexact if x != 0 */
74 if(ix<0x32000000) return one; /* |x|<2**-27 */
75 else return one - (float)0.25*x*x;
80 s = one+z*(S01+z*(S02+z*(S03+z*S04)));
82 return one + z*((float)-0.25+(r/s));
85 return((one+u)*(one-u)+z*(r/s));
111 if(ix>=0x7f800000) return one/(x+x*x)
    [all...]
s_expm1.c 79 * (A). To save one multiplication, we scale the coefficient Qi
117 one = 1.0, variable
157 return tiny-one; /* return -1 */
186 r1 = one+hxs*(Q1+hxs*(Q2+hxs*(Q3+hxs*(Q4+hxs*Q5))));
197 else return one+2.0*(x-e);
200 y = one-(e-x);
203 return y-one;
205 t = one;
213 y += one;
s_modff.c 22 static const float one = 1.0; variable
50 *iptr = x*one;
  /external/fdlibm/
e_j0.c 32 * to compute the worse one.)
73 one = 1.0, variable
100 if(ix>=0x7ff00000) return one/(x*x);
124 if(huge+x>one) { /* raise inexact if x != 0 */
125 if(ix<0x3e400000) return one; /* |x|<2**-27 */
126 else return one - 0.25*x*x;
131 s = one+z*(S01+z*(S02+z*(S03+z*S04)));
133 return one + z*(-0.25+(r/s));
136 return((one+u)*(one-u)+z*(r/s))
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/code/form/
Form35c.java 142 RegisterSpec one = regs.get(i); local
143 result += one.getCategory();
150 if (!unsignedFitsInNibble(one.getReg() + one.getCategory() - 1)) {
159 * Returns a register list which is equivalent to the given one,
179 RegisterSpec one = orig.get(i); local
180 result.set(wordAt, one);
181 if (one.getCategory() == 2) {
183 RegisterSpec.make(one.getReg() + 1, Type.VOID));
  /dalvik/dx/src/com/android/dx/cf/code/
LocalVariableList.java 66 * given instances, where one instance should have only type
68 * result is identical to the one with descriptors, except that
133 * <p><b>Note:</b> At least one of {@code descriptor} or
164 Item one = (Item) get0(i); local
166 if ((one != null) && one.matchesAllButType(item)) {
167 return one;
178 * <i>just past</i> the one that sets the variable.
189 Item one = (Item) get0(i); local
191 if ((one != null) && one.matchesPcAndIndex(pc, index))
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/form/
Form35c.java 159 RegisterSpec one = regs.get(i); local
160 result += one.getCategory();
167 if (!unsignedFitsInNibble(one.getReg() + one.getCategory() - 1)) {
176 * Returns a register list which is equivalent to the given one,
196 RegisterSpec one = orig.get(i); local
197 result.set(wordAt, one);
198 if (one.getCategory() == 2) {
200 RegisterSpec.make(one.getReg() + 1, Type.VOID));
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_bld_alpha.c 77 alpha = lp_build_clamp(&bld, alpha, bld.zero, bld.one);
78 ref = lp_build_clamp(&bld, ref, bld.zero, bld.one);
  /external/chromium_org/v8/test/webkit/
comparison-operators-greater.js 61 var One = 1;
103 doTest('0', 'One', -1);
104 doTest('One', '0', 1);
143 var one = 1; variable
187 shouldBeTrue("one >= zero");
188 shouldBeTrue("one >= one");
189 shouldBeTrue("one > zero");
190 shouldBeFalse("zero >= one");
191 shouldBeFalse("one >= two")
    [all...]
comparison-operators-less.js 60 var One = 1;
101 doTest('0', 'One', -1);
102 doTest('One', '0', 1);
141 var one = 1; variable
185 shouldBeTrue("zero <= one");
186 shouldBeTrue("one <= one");
187 shouldBeTrue("zero < one");
188 shouldBeFalse("one <= zero");
189 shouldBeFalse("two <= one");
    [all...]
  /external/clang/test/CXX/over/over.over/
p2-resolve-single-template-id.cpp 27 void one() { } function in namespace:DontAllowUnresolvedOverloadedExpressionInAnUnusedExpression
37 one; // expected-warning {{expression result unused}}
46 one; // expected-warning {{expression result unused}}
66 void one() { } function
79 { static_cast<void>(one); }
80 { (void)(one); }
92 { (void) reinterpret_cast<ptrdiff_t>(one); }
93 { (void) reinterpret_cast<int (*)(char, double)>(one); }
  /external/clang/utils/VtableTest/
Makefile 4 all: one
20 one: test-gcc.sum test-clang.sum
  /external/compiler-rt/test/BlocksRuntime/
copyconstructor.C 66 TestObject one; local
68 void (^b)(void) = ^{ printf("my const copy of one is %d\n", one.version()); };
reference.C 79 TestObject one; local
82 one.test();
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/form/
Form35c.java 160 RegisterSpec one = regs.get(i); local
161 result += one.getCategory();
168 if (!unsignedFitsInNibble(one.getReg() + one.getCategory() - 1)) {
177 * Returns a register list which is equivalent to the given one,
197 RegisterSpec one = orig.get(i); local
198 result.set(wordAt, one);
199 if (one.getCategory() == 2) {
201 RegisterSpec.make(one.getReg() + 1, Type.VOID));
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
token.ml 5 (* The lexer returns these 'Kwd' if it is an unknown character, otherwise one of
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
token.ml 5 (* The lexer returns these 'Kwd' if it is an unknown character, otherwise one of
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
token.ml 5 (* The lexer returns these 'Kwd' if it is an unknown character, otherwise one of
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_bld_alpha.c 77 alpha = lp_build_clamp(&bld, alpha, bld.zero, bld.one);
78 ref = lp_build_clamp(&bld, ref, bld.zero, bld.one);
  /build/core/
copy_headers.mk 12 # destination header. copy-one-header defines the
21 $(eval $(call copy-one-header,$(_chFrom),$(_chTo))) \
  /build/core/tasks/
factory_ramdisk.mk 37 define install-one-factory-ramdisk-module
45 $(eval $(call copy-one-file,$(_iofrm_src),$(_fulldest))) \
57 $(foreach d,$(_fr_dests),$(call install-one-factory-ramdisk-module,$(d),$(_fr_m_built))) \
68 $(eval $(call copy-one-file,$(TARGET_OUT)/build.prop,$(TARGET_FACTORY_RAMDISK_OUT)/system/build.prop))

Completed in 634 milliseconds

1 2 3 4 5 6 7 891011>>