Searched refs:one (Results 101 - 125 of 1174) sorted by relevance

1234567891011>>

/external/libvpx/libvpx/vpx_dsp/ppc/
H A Dbitdepth_conversion_vsx.h35 const int16x8_t one = vec_splat_s16(1); local
36 const int32x4_t even = vec_mule(v, one);
37 const int32x4_t odd = vec_mulo(v, one);
/external/libvpx/libvpx/vpx_dsp/x86/
H A Dbitdepth_conversion_avx2.h33 const __m256i one = _mm256_set1_epi16(1); local
34 const __m256i a_hi = _mm256_mulhi_epi16(a, one);
35 const __m256i a_lo = _mm256_mullo_epi16(a, one);
/external/clang/test/CodeGen/
H A Ddesignated-initializers.c92 int one; member in struct:u_16644::s_16644
103 .a.one = 1,
113 .a.one = 11,
120 .a.one = 21,
129 .one = 31
136 [0].a.one = 2,
/external/fdlibm/
H A Ds_atan.c19 * is further reduced to one of the following intervals and the
82 one = 1.0, variable
105 if(huge+x>one) return x; /* raise inexact */
112 id = 0; x = (2.0*x-one)/(2.0+x);
114 id = 1; x = (x-one)/(x+one);
118 id = 2; x = (x-1.5)/(one+1.5*x);
H A Ds_expm1.c76 * (A). To save one multiplication, we scale the coefficient Qi
115 one = 1.0, variable
157 return tiny-one; /* return -1 */
187 r1 = one+hxs*(Q1+hxs*(Q2+hxs*(Q3+hxs*(Q4+hxs*Q5))));
197 else return one+2.0*(x-e);
199 y = one-(e-x);
201 return y-one;
203 t = one;
211 y += one;
H A Ds_erf.c42 * is close to one. The interval is chosen because the fix
45 * guarantee the error is less than one ulp for erf.
118 one = 1.00000000000000000000e+00, /* 0x3FF00000, 0x00000000 */ variable
203 return (double)(1-i)+one/x; /* ieee_erf(+-inf)=+-1 */
214 s = one+z*(qq1+z*(qq2+z*(qq3+z*(qq4+z*qq5))));
219 s = ieee_fabs(x)-one;
221 Q = one+s*(qa1+s*(qa2+s*(qa3+s*(qa4+s*(qa5+s*qa6)))));
225 if(hx>=0) return one-tiny; else return tiny-one;
228 s = one/(
[all...]
H A Dk_cos.c56 one = 1.00000000000000000000e+00, /* 0x3FF00000, 0x00000000 */ variable
75 if(((int)x)==0) return one; /* generate inexact */
80 return one - (0.5*z - (z*r - x*y));
89 a = one-qx;
/external/clang/test/CXX/special/class.temporary/
H A Dp1.cpp44 typedef char one[1]; typedef in namespace:test2
47 one &meta(bool);
/external/clang/test/Sema/
H A Dstatic-assert.c32 __typeof__(T1) one; \
40 UNION(char[2], short) u2 = { .one = { 'a', 'b' } };
H A Dattr-section.c21 enum __attribute__((section("NEAR,x"))) e { one }; // expected-error {{'section' attribute only applies to functions and global variables}} enumerator in enum:e
/external/compiler-rt/test/asan/TestCases/
H A Dcontiguous_container_crash.cc18 static volatile int one = 1; variable
27 return (int)t[60 * one]; // Touches the poisoned memory.
/external/python/cpython2/Modules/
H A Dtestcapi_long.h78 * provoke one-over-the-limit cases (not exhaustive, but sharp).
81 PyObject *one, *x, *y;
85 one = PyLong_FromLong(1);
86 if (one == NULL)
91 x = PyNumber_Negative(one);
113 x = PyNumber_Lshift(one, y); /* 1L << NBITS, == 2**NBITS */
132 y = PyNumber_Rshift(x, one); /* 2**(NBITS-1) */
157 y = PyNumber_Subtract(x, one); /* -(2**(NBITS-1))-1 */
177 Py_DECREF(one);
/external/python/cpython3/Modules/
H A Dtestcapi_long.h77 * provoke one-over-the-limit cases (not exhaustive, but sharp).
80 PyObject *one, *x, *y;
84 one = PyLong_FromLong(1);
85 if (one == NULL)
90 x = PyNumber_Negative(one);
112 x = PyNumber_Lshift(one, y); /* 1L << NBITS, == 2**NBITS */
131 y = PyNumber_Rshift(x, one); /* 2**(NBITS-1) */
156 y = PyNumber_Subtract(x, one); /* -(2**(NBITS-1))-1 */
176 Py_DECREF(one);
/external/tensorflow/tensorflow/contrib/tensorboard/db/
H A Dsummary_file_writer_test.cc63 return errors::Unknown("Found more than one file for ", test_name);
93 Tensor one(DT_FLOAT, TensorShape({}));
94 one.scalar<float>()() = 1.0;
96 2, one, "name",
112 Tensor one(DT_FLOAT, TensorShape({}));
113 one.scalar<float>()() = 1.0;
114 TF_RETURN_IF_ERROR(writer->WriteScalar(2, one, "name"));
129 Tensor one(DT_FLOAT, TensorShape({}));
130 one.scalar<float>()() = 1.0;
132 writer->WriteHistogram(2, one, "nam
[all...]
/external/tensorflow/tensorflow/core/kernels/
H A Deigen_activations.h35 const T one = T(1); local
36 return (one - y) * y;
41 const Packet one = internal::pset1<Packet>(1); local
42 return internal::pmul(internal::psub(one, y), y);
69 const T one = T(1); local
70 return one - (y * y);
75 const Packet one = internal::pset1<Packet>(1); local
76 return internal::psub(one, internal::pmul(y, y));
/external/testng/src/test/java/test/dependent/
H A DSampleDependentMethods3.java20 public void one() { method in class:SampleDependentMethods3
28 public void one(String s) { method in class:SampleDependentMethods3
35 @Test(dependsOnMethods = { "one" } )
/external/valgrind/none/tests/
H A Dvgprintf.stderr.exp4 Backtrace line one
/external/eigen/blas/f2c/
H A Ddrotmg.c21 static doublereal one = 1.; local
127 du = one - dh12 * dh21;
148 dflag = one;
151 du = one + dh11 * dh22;
160 dflag = -one;
180 dh11 = one;
181 dh22 = one;
182 dflag = -one;
185 dh21 = -one;
186 dh12 = one;
[all...]
H A Dsrotmg.c21 static real one = 1.f; local
129 su = one - sh12 * sh21;
150 sflag = one;
153 su = one + sh11 * sh22;
162 sflag = -one;
182 sh11 = one;
183 sh22 = one;
184 sflag = -one;
187 sh21 = -one;
188 sh12 = one;
[all...]
/external/guava/guava-tests/test/com/google/common/cache/
H A DCacheManualTest.java37 Object one = new Object();
40 assertNull(cache.getIfPresent(one));
46 assertNull(cache.asMap().get(one));
47 assertFalse(cache.asMap().containsKey(one));
58 assertFalse(cache.asMap().containsValue(one));
60 cache.put(one, two);
62 assertSame(two, cache.getIfPresent(one));
68 assertSame(two, cache.asMap().get(one));
69 assertTrue(cache.asMap().containsKey(one));
80 assertFalse(cache.asMap().containsValue(one));
[all...]
/external/curl/docs/cmdline-opts/
H A Dnetrc-file.d8 or relative) to the netrc file that Curl should use. You can only specify one
10 the last one will be used.
/external/llvm/test/MC/COFF/
H A Dinvalid-def.s3 # CHECK: error: starting a new symbol definition without completing the previous one
4 # CHECK: error: starting a new symbol definition without completing the previous one
/external/llvm/test/tools/dsymutil/X86/
H A Dempty_range.s59 # debug map object isn't found. Check that we only linked one file.
/external/testng/src/test/java/test/annotationtransformer/
H A DAnnotationTransformerClassSampleTest.java17 public void one() { method in class:AnnotationTransformerClassSampleTest
/external/testng/src/test/java/test/methodinterceptors/
H A DLockUpInterceptorSampleTest.java11 public void one() { method in class:LockUpInterceptorSampleTest
12 log("one");

Completed in 632 milliseconds

1234567891011>>