Searched defs:one (Results 126 - 150 of 260) sorted by relevance

1234567891011

/external/gptfdisk/
H A Dattributes.cc183 const uint64_t one = 1; local
184 attributeBitMask = one << bitNum;
/external/javassist/src/main/javassist/bytecode/analysis/
H A DType.java90 * uses the same position for a primitive type in one branch, and a reference type
181 * Returns whether or not the type is special. A special type is one that is either used
275 * type can be assigned. If there is more than one possible answer, then a {@link MultiType},
337 // Although, this is more efficient even if we did have one.
391 private static CtClass findCommonSuperClass(CtClass one, CtClass two) throws NotFoundException { argument
392 CtClass deep = one;
576 static boolean eq(CtClass one, CtClass two) { argument
577 return one == two || (one != null && two != null && one
[all...]
/external/libvncserver/libvncserver/
H A Dsockets.c122 const int one = 1; local
128 (char *)&one, sizeof(one)) < 0) {
382 const int one = 1; local
395 one of them has, so this should not block for too long! */
422 (char *)&one, sizeof(one)) < 0) {
507 int one = 1; local
523 (char *)&one, sizeof(one)) <
832 int one = 1; local
1014 int one = 1; local
[all...]
/external/mesa3d/src/gallium/state_trackers/d3d1x/d3d1xshader/include/
H A Ddxbc.h83 uint32_t one; member in struct:dxbc_container_header
/external/mesa3d/src/gallium/state_trackers/vega/
H A Dasm_fill.h302 struct ureg_src one,
310 one);
331 struct ureg_src one,
347 ureg_SUB(ureg, temp[0], one, src_channel_alpha);
352 ureg_SUB(ureg, temp[0], one, ureg_scalar(dst, TGSI_SWIZZLE_W));
378 ureg_SUB(ureg, temp[0], one, src);
384 ureg_SUB(ureg, temp[0], one, src_channel_alpha);
387 ureg_SUB(ureg, temp[1], one, ureg_scalar(dst, TGSI_SWIZZLE_W));
402 ureg_MIN(ureg, out, ureg_src(temp[0]), one);
409 blend_unpremultiply(ureg, src, one, tem
300 blend_unpremultiply( struct ureg_program *ureg, struct ureg_src src, struct ureg_src one, struct ureg_dst temp[1]) argument
326 blend_generic(struct ureg_program *ureg, VGBlendMode mode, struct ureg_src src, struct ureg_src src_channel_alpha, struct ureg_src dst, struct ureg_src one, struct ureg_dst temp[2]) argument
[all...]
/external/openfst/src/include/fst/script/
H A Dweight-class.h152 // We need to store zero and one as statics, because the weight type
156 static const W one = W::One(); local
161 return &one;
/external/replicaisland/src/com/replica/replicaisland/
H A DAnimationComponent.java373 public void setRubySounds(Sound one, Sound two, Sound three) { argument
374 mRubySound1 = one;
/external/skia/src/pathops/
H A DSkPathOpsCubic.h142 one ^ two == 3 for (0, 3), (1, 2)
143 one ^ two < 3 for (0, 1), (0, 2), (1, 3), (2, 3)
144 3 - (one ^ two) is either 0, 1, or 2
145 1 >> (3 - (one ^ two)) is either 0 or 1
153 inline int other_two(int one, int two) { argument
154 return 1 >> (3 - (one ^ two)) ^ 3;
H A DSkPathOpsOp.cpp202 static void dump_op(const SkPath& one, const SkPath& two, SkPathOp op) { argument
212 fprintf(file, " path.setFillType((SkPath::FillType) %d);\n", one.getFillType());
213 dump_path(file, one, false, true);
225 bool OpDebug(const SkPath& one, const SkPath& two, SkPathOp op, SkPath* result, argument
233 dump_op(one, two, op);
239 SkPathOpsDebug::ShowPath(one, two, op, debugName);
242 op = gOpInverse[op][one.isInverseFillType()][two.isInverseFillType()];
243 SkPath::FillType fillType = gOutInverse[op][one.isInverseFillType()][two.isInverseFillType()]
245 const SkPath* minuend = &one;
249 subtrahend = &one;
306 Op(const SkPath& one, const SkPath& two, SkPathOp op, SkPath* result) argument
[all...]
/external/skia/src/utils/
H A DSkCullPoints.cpp208 const SkScalar one = SK_Scalar1; local
209 SkRect r = SkRect::MakeXYWH(x - half, y - half, one, one);
/external/v8/src/
H A Dfast-dtoa.cc93 // and v (the input number). They are guaranteed to be precise up to one unit.
94 // In fact the error is guaranteed to be strictly less than one unit.
106 // representations, and one is closer to both w_low and w_high, then we know
134 // representations close to w, but we cannot decide which one is closer.
340 // * if more than one decimal representation gives the minimal number of
341 // decimal digits then the one closest to W (where W is the correct value
371 // low, w and high are imprecise, but by less than one ulp (unit in the last
395 DiyFp one = DiyFp(static_cast<uint64_t>(1) << -w.e(), w.e()); local
396 // Division by one is a shift.
397 uint32_t integrals = static_cast<uint32_t>(too_high.f() >> -one
503 DiyFp one = DiyFp(static_cast<uint64_t>(1) << -w.e(), w.e()); local
[all...]
/external/v8/test/cctest/compiler/
H A Dtest-machine-operator-reducer.cc429 Node* one = R.Constant<int32_t>(1); local
434 R.CheckBinop(x, x, one); // x * 1 => x
435 R.CheckBinop(x, one, x); // 1 * x => x
468 Node* one = R.Constant<int32_t>(1); local
471 R.CheckBinop(x, x, one); // x / 1 => x
495 Node* one = R.Constant<int32_t>(1); local
497 R.CheckBinop(x, x, one); // x / 1 => x
525 Node* one = R.Constant<int32_t>(1); local
527 R.CheckFoldBinop<int32_t>(0, x, one); // x % 1 => 0
548 Node* one local
746 Node* one = R.Constant<double>(1.0); local
767 Node* one = R.Constant<double>(1.0); local
[all...]
/external/valgrind/auxprogs/
H A Dvalgrind-listener.c253 int i, j, k, res, one; local
305 one = 1;
307 &one, sizeof(int)) < 0) {
/external/valgrind/exp-bbv/tests/amd64-linux/
H A Dll.S50 # but, that only gains us one byte of space in the lzss image.
107 inc %ecx # we set ecx to one so byte
233 lea one-6(%rbx,%rbx,2), %esi
235 # [one]+(num_cpus*6)
267 # gas won't let us force the one-byte constant
439 dec %edi # point to one less than null
464 push $81 # one added to cheat, we don't
561 one: .ascii "One\0\0\0" label
/external/valgrind/exp-bbv/tests/arm-linux/
H A Dll.S109 mov r6,#1 @ we set r6 to one so byte
172 add r1,r11,#(one-data_begin)
269 cmpeq r5,r1 @ if first byte matched, comp this one
271 cmpeq r5,r2 @ if first two matched, comp this one
310 sub r10,r10,#1 @ point to one less than null
448 one: .ascii "One \0" label
/external/valgrind/exp-bbv/tests/x86-linux/
H A Dll.S44 # but, that only gains us one byte of space in the lzss image.
99 inc %ecx # we set ecx to one so byte
228 lea one-6(%ebx,%ebx,2), %esi
230 # [one]+(num_cpus*6)
261 # gas won't let us force the one-byte constant
439 dec %edi # point to one less than null
464 push $81 # one added to cheat, we don't
561 one: .ascii "One\0\0\0" label
/external/boringssl/src/crypto/ec/
H A Dinternal.h214 BIGNUM *one; /* The value one */ member in struct:ec_group_st
/external/boringssl/src/crypto/modes/
H A Dgcm.c124 long one; member in union:__anon447
157 long one; member in union:__anon448
235 long one; member in union:__anon449
419 long one; member in union:__anon450
493 long one; member in union:__anon451
635 long one; member in union:__anon452
795 long one; member in union:__anon453
962 long one; member in union:__anon454
1072 long one; member in union:__anon455
1187 long one; member in union:__anon456
[all...]
/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 DMicrosoftExtensions.c115 __declspec(deprecated("This is deprecated")) enum DE1 { one, two } e1; // expected-note {{'e1' has been explicitly marked deprecated here}} enumerator in enum:DE1
124 e1 = one; // expected-warning {{'e1' is deprecated: This is deprecated}}
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);
146 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/crcalc/src/com/hp/creals/
H A DUnaryCRFunction.java211 CR one = CR.valueOf(1); field in class:atan_UnaryCRFunction
214 CR abs_sin_atan = x2.divide(one.add(x2)).sqrt();
331 // Comparison with a difference of one treated as equality.
361 // one outside [f_l, f_h].
/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)

Completed in 1389 milliseconds

1234567891011