Searched defs:one (Results 201 - 225 of 342) sorted by relevance

1234567891011>>

/external/chromium_org/tools/site_compare/
H A Dsite_compare.py28 import commands.compare2 # compare one page in two versions of same browser namespace
39 """Invoke one or more browsers over one or more URLs, scraping renders.
/external/clang/test/Analysis/inlining/
H A Dpath-notes.cpp268 int generateNoteOnDefaultArgument(int one, int two = 0) { argument
269 return one/two; // expected-warning {{Division by zero}}
/external/clang/test/Sema/
H A Dms_class_layout.cpp18 char one; member in class:A
186 // CHECK-NEXT: 12 | char one
208 // CHECK-NEXT: 76 | char one
238 // CHECK-NEXT: 92 | char one
269 // CHECK-NEXT: 92 | char one
/external/clang/test/SemaCXX/
H A Dcxx0x-initializer-constructor.cpp3 struct one { char c[1]; }; struct
134 one ov1(B); // expected-note {{not viable: cannot convert initializer list}}
139 static_assert(sizeof(ov1({{1, 1.0}, 2, {3, 4}})) == sizeof(one), "bad overload");
143 one ov2(int);
145 static_assert(sizeof(ov2({1})) == sizeof(one), "bad overload"); // list -> int ranks as identity
H A Dcxx0x-initializer-stdinitializerlist.cpp45 struct one { char c[1]; }; struct
83 one overloaded(std::initializer_list<int>);
86 static_assert(sizeof(overloaded({1, 2, 3})) == sizeof(one), "bad overload");
93 one ov2(std::initializer_list<int>); // expected-note {{candidate}}
96 static_assert(sizeof(ov2({1, 2, 3})) == sizeof(one), "bad overload");
/external/eigen/Eigen/src/Eigen2Support/Geometry/
H A DQuaternion.h8 // with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
418 static const Scalar one = Scalar(1) - machine_epsilon<Scalar>(); local
425 if (absD>=one)
/external/fdlibm/
H A De_pow.c72 one = 1.0, variable
113 i0 = ((*(int*)&one)>>29)^1; i1=1-i0;
119 if((iy|ly)==0) return one;
157 if(hy<0) return one/x; else return x;
171 if(hy<0) z = one/z; /* z = (1/|x|) */
187 s = one; /* s (sign of result -ve**odd) = -1 else = 1 */
188 if((n|(yisint-1))==0) s = -one;/* (-ve)**(odd int) */
196 /* over/underflow if x is not close to one */
201 t = ax-one; /* t has 20 trailing zeros */
225 v = one/(a
[all...]
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...]
/external/icu/icu4c/source/test/cintltst/
H A Dcmsgtst.c93 /* Keep the #if above in sync with the one below that has the same "add platforms here .." comment. */
196 int32_t one=0; local
243 umsg_parse(formatter,result,resultLength,&count,&ec,one,two,d2);
255 umsg_parse(formatter,result,resultLength,&count,&ec,&one,&two,&d2);
752 u_uastrcpy(pattern, "The disk {1} contains {0,choice,0#no files|1#one file|1<{0,number} files}");
798 u_uastrcpy(expected, "The disk MyDisk contains one file");
998 * in one of the 30 minute offset zones!). */
1011 * offset, that is, one with a non-zero minutes/seconds offset
/external/icu/icu4c/source/test/intltest/
H A Dplurfmts.cpp277 pluralFmt.applyPattern(UNICODE_STRING_SIMPLE("one{one} other{not one}"), status);
281 UnicodeString one = UNICODE_STRING_SIMPLE("one"); local
282 UnicodeString notOne = UNICODE_STRING_SIMPLE("not one");
287 numResult = one;
337 testPattern = UNICODE_STRING_SIMPLE("one{one} other{other}");
348 testPattern = UNICODE_STRING_SIMPLE("one{on
[all...]
/external/mesa3d/src/gallium/drivers/softpipe/
H A Dsp_quad_blend.c255 * Do blending for a 2x2 quad for one color buffer.
270 static const float one[4] = { 1, 1, 1, 1 }; local
314 VEC4_SUB(diff, one, dest[3]);
362 VEC4_SUB(inv_comp, one, quadColor[0]); /* R */
364 VEC4_SUB(inv_comp, one, quadColor[1]); /* G */
366 VEC4_SUB(inv_comp, one, quadColor[2]); /* B */
373 VEC4_SUB(inv_alpha, one, quadColor[3]);
382 VEC4_SUB(inv_alpha, one, dest[3]);
391 VEC4_SUB(inv_comp, one, dest[0]); /* R */
393 VEC4_SUB(inv_comp, one, des
1031 static const float one[4] = { 1, 1, 1, 1 }; local
[all...]
/external/mesa3d/src/mesa/swrast/
H A Ds_stencil.c64 const GLubyte one = 1; local
71 _mesa_pack_ubyte_stencil_row(format, 1, &one, pixel);
345 * /return GL_TRUE = one or more fragments passed,
439 return GL_TRUE; /* one or more fragments passed both tests */
/external/openfst/src/include/fst/
H A Dstring-weight.h92 static const StringWeight<L, S> one; local
93 return one;
/external/openssl/crypto/bn/
H A Dbntest.c1017 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);
1909 fprintf(stderr,"Left shift one test failed!\n");
1996 fprintf(stderr,"Right shift one test failed!\n");
/external/openssl/crypto/sha/
H A Dsha_locl.h231 const union { long one; char little; } is_endian = {1}; member in union:__anon28358
/external/skia/experimental/Intersection/
H A DCubicParameterization.cpp426 bool implicit_matches(const Cubic& one, const Cubic& two) { argument
432 alt_set_abcd(&one[0].x, a1, b1, c1, d1);
434 set_abcd(&one[0].x, a1, b1, c1, d1);
437 alt_set_abcd(&one[0].y, e1, f1, g1, h1);
439 set_abcd(&one[0].y, e1, f1, g1, h1);
453 double a1 = one[0].x;
454 double b1 = one[1].x;
455 double c1 = one[2].x;
456 double d1 = one[3].x;
457 double e1 = one[
[all...]
/external/skia/src/effects/
H A DSkColorMatrixFilter.cpp140 int32_t one = SK_Fixed1; local
149 one >>= bits;
154 (array[18] - one) | array[19]);
164 int32_t needsScale = (array[SkColorMatrix::kR_Scale] - one) |
165 (array[SkColorMatrix::kG_Scale] - one) |
166 (array[SkColorMatrix::kB_Scale] - one);
/external/skia/src/opts/
H A DSkBitmapProcState_matrix_neon.h233 SkFixed one PREAMBLE_PARAM_Y) {
236 return (i << 14) | (TILEY_PROCF((f + one), max));
240 SkFixed one PREAMBLE_PARAM_X) {
243 return (i << 14) | (TILEX_PROCF((f + one), max));
247 SkFixed one PREAMBLE_PARAM_X) {
251 wide_one = vdupq_n_s32(one);
268 SkFixed one PREAMBLE_PARAM_X) {
272 wide_one = vdupq_n_s32(one);
297 const SkFixed one = s.fFilterOneX; local
310 fx = SkScalarToFractionalInt(pt.fX) - (SkFixedToFractionalInt(one) >>
[all...]
H A DSkBitmapProcState_opts_SSE2.cpp237 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)
236 ClampX_ClampY_pack_filter(SkFixed f, unsigned max, SkFixed one) argument
/external/skia/src/pathops/
H A DSkIntersections.h100 int insertSwap(double one, double two, const SkDPoint& pt) { argument
102 return insert(two, one, pt);
104 return insert(one, two, pt);
220 void cubicInsert(double one, double two, const SkDPoint& pt, const SkDCubic& c1,
232 int insert(double one, double two, const SkDPoint& pt);
233 void insertNear(double one, double two, const SkDPoint& pt1, const SkDPoint& pt2);
235 void insertCoincident(double one, double two, const SkDPoint& pt);
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dstring-weight.h89 static const StringWeight<L, S> one; local
90 return one;
/external/valgrind/main/memcheck/tests/
H A Dstr_tester.c65 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, "
[all...]
/external/chromium_org/base/json/
H A Djson_parser.cc712 --index_; // Rewind by one because of CBU8_NEXT.
848 // the top of the header), then make sure the next token is one which is
943 bool JSONParser::StringsAreEqual(const char* one, const char* two, size_t len) { argument
944 return strncmp(one, two, len) == 0;
/external/chromium_org/third_party/codesighs/
H A Dcodesighs.c37 * the terms of any one of the MPL, the GPL or the LGPL.
65 ** mTotalOnly Only output one number, the total.
121 static Switch gTotalSwitch = {"--totalonly", "-t", 0, NULL, "Output only one number." DESC_NEWLINE "The total overall size." DESC_NEWLINE "Overrides other output options."};
190 const ModuleStats* one = (const ModuleStats*)in1; local
192 unsigned long oneSize = one->mSize.mCode + one->mSize.mData;
575 ** Output each one.
/external/chromium_org/third_party/cython/src/Cython/Compiler/
H A DFlowControl.py407 # is_single [boolean] Has only one assignment at this point
429 def one(self): member in class:ControlFlowState

Completed in 2309 milliseconds

1234567891011>>