HomeSort by relevance Sort by last modified time
    Searched defs:one (Results 451 - 475 of 597) sorted by null

<<11121314151617181920>>

  /libcore/jsr166-tests/src/test/java/jsr166/
JSR166TestCase.java 60 * <li>All delays and timeouts must use one of the constants {@code
69 * in one spot to rerun tests on slower platforms.</li>
81 * <li> Usually, there is one testcase method per JSR166 method
485 public static final Integer one = new Integer(1); field in class:JSR166TestCase
840 public Integer call() { return one; }
    [all...]
LinkedBlockingQueueTest.java 117 q.add(one);
148 assertFalse(q.offer(one));
520 q.add(one);
522 assertTrue(q.contains(one));
626 q.add(one);
634 assertSame(it.next(), one); local
644 q.add(one);
660 q.add(one);
686 q.add(one);
701 assertSame(one, q.take())
    [all...]
  /packages/apps/Camera2/src/com/android/camera/one/v2/
OneCameraImpl.java 17 package com.android.camera.one.v2;
49 import com.android.camera.one.AbstractOneCamera;
50 import com.android.camera.one.OneCamera;
51 import com.android.camera.one.Settings3A;
OneCameraZslImpl.java 17 package com.android.camera.one.v2;
53 import com.android.camera.one.AbstractOneCamera;
54 import com.android.camera.one.OneCamera;
55 import com.android.camera.one.OneCamera.PhotoCaptureParameters.Flash;
56 import com.android.camera.one.Settings3A;
57 import com.android.camera.one.v2.ImageCaptureManager.ImageCaptureListener;
58 import com.android.camera.one.v2.ImageCaptureManager.MetadataChangeListener;
238 // latest one. Synchronization is necessary since this method is
448 // acceptable one exists in the buffer.
473 // the one we requested in (2)
    [all...]
  /packages/apps/Dialer/src/com/android/dialer/dialpad/
DialpadFragment.java 242 // one of the choices, which would be confusing. (But at
365 View oneButton = fragmentView.findViewById(R.id.one);
564 final int[] buttonIds = new int[] {R.id.one, R.id.two, R.id.three, R.id.four, R.id.five,
574 // Long-pressing one button will initiate Voicemail.
575 final DialpadKeyButton one = (DialpadKeyButton) fragmentView.findViewById(R.id.one); local
576 one.setOnLongClickListener(this);
790 case R.id.one: {
    [all...]
  /bionic/libc/dns/net/
getaddrinfo.c 418 const int one = 1; local
441 setsockopt(sock, SOL_SOCKET, SO_REUSEADDR, &one, sizeof(one));
1267 * We currently assume a one-to-one mapping between links
    [all...]
  /dalvik/dx/src/com/android/dx/cf/code/
Ropper.java 246 * @param retBlock one of the ret blocks (final blocks) of this
415 * stack element, plus one if the method is synchronized to
427 * should be one of the static constants defined by this class.
551 BasicBlock one = result.get(i); local
552 if (one.getLabel() == label) {
847 * (which will either be all of them or all but the last one)
910 ByteCatchList.Item one = catches.get(i); local
911 CstType exceptionClass = one.getExceptionClass();
912 int targ = one.getHandlerPc();
946 * already have a catch-all handler, so add one to th
1116 Type one = params.get(i); local
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
ECPoint.java 26 ECFieldElement one = curve.fromBigInteger(ECConstants.ONE); local
33 return new ECFieldElement[]{ one };
35 return new ECFieldElement[]{ one, one, one };
37 return new ECFieldElement[]{ one, curve.getA() };
492 throw new IllegalArgumentException("Exactly one of the field elements is null");
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/x86/
vp9_loopfilter_intrin_sse2.c 25 const __m128i one = _mm_set1_epi8(1); local
130 flat = _mm_subs_epu8(flat, one);
149 flat2 = _mm_subs_epu8(flat2, one);
390 const __m128i one = _mm_set1_epi8(1); local
453 flat = _mm_subs_epu8(flat, one);
462 flat2 = _mm_subs_epu8(flat2, one);
761 const __m128i one = _mm_set1_epi8(1); local
984 const __m128i one = _mm_set1_epi8(1); local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
lp_bld_arit.c 262 if(a == bld->one)
265 return bld->one;
276 return LLVMConstFSub(bld->one, a);
278 return LLVMConstSub(bld->one, a);
281 return LLVMBuildFSub(builder, bld->one, a, "");
283 return LLVMBuildSub(builder, bld->one, a, "");
312 if(a == bld->one || b == bld->one)
313 return bld->one;
341 res = lp_build_min_simple(bld, res, bld->one);
1178 LLVMValueRef one; local
2182 LLVMValueRef one = lp_build_const_vec(gallivm, bld->type, 1.0); local
2400 LLVMValueRef one = lp_build_const_vec(gallivm, bld->type, 1.0); local
2726 LLVMValueRef one = LLVMConstBitCast(bld->one, bld->int_vec_type); local
2793 LLVMValueRef one = LLVMConstBitCast(bld->one, int_vec_type); local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
svga_tgsi_insn.c 486 * in one slot at least:
1120 struct src_register zero, one; local
1233 struct src_register one = scalar( get_zero_immediate( emit ), local
1377 struct src_register one, zero; local
1724 struct src_register one = local
2821 struct src_register one = scalar( get_zero_immediate( emit ), local
    [all...]
  /external/chromium_org/third_party/skia/experimental/PdfViewer/src/
SkPdfRenderer.cpp 518 // TODO(edisonn): assumes RGB for now, since it is the only one implemented
585 SkScalar one = SkIntToScalar(1); local
587 SkPoint from[4] = {SkPoint::Make(z, z), SkPoint::Make(one, z),
588 SkPoint::Make(one, one), SkPoint::Make(z, one)};
589 SkPoint to[4] = {SkPoint::Make(z, one), SkPoint::Make(one, one),
590 SkPoint::Make(one, z), SkPoint::Make(z, z)}
    [all...]
  /external/chromium_org/third_party/skia/tests/
PathOpsOpTest.cpp 359 SkPath one, two; local
360 one.addRect(0, 0, 6, 6, SkPath::kCW_Direction);
362 testPathOp(reporter, one, two, kIntersect_PathOp, filename);
366 SkPath one, two; local
367 one.addRect(0, 0, 6, 6, SkPath::kCW_Direction);
369 testPathOp(reporter, one, two, kUnion_PathOp, filename);
373 SkPath one, two; local
374 one.addRect(0, 0, 6, 6, SkPath::kCW_Direction);
376 testPathOp(reporter, one, two, kDifference_PathOp, filename);
380 SkPath one, two local
387 SkPath one, two; local
394 SkPath one, two; local
401 SkPath one, two; local
408 SkPath one, two; local
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
CStringChecker.cpp 374 NonLoc One = svalBuilder.makeIntVal(1, sizeTy).castAs<NonLoc>();
376 .evalBinOpNN(state, BO_Sub, *Length, One, sizeTy).castAs<NonLoc>();
471 // If we don't know which one comes first, we can't perform this test.
1445 NonLoc one = svalBuilder.makeIntVal(1, sizeTy).castAs<NonLoc>(); local
    [all...]
  /external/guava/guava-tests/test/com/google/common/cache/
CacheLoadingTest.java 159 final Object one = new Object(); local
164 return one;
181 assertSame(one, cache.getUnchecked(key));
205 final Object one = new Object(); local
211 return one;
231 assertSame(one, cache.getUnchecked(key));
239 assertSame(one, cache.getUnchecked(key));
264 final Object one = new Object(); local
270 return one;
290 assertSame(one, cache.getUnchecked(key))
646 final Object one = new Object(); local
691 final Object one = new Object(); local
736 final Object one = new Object(); local
919 final Object one = new Object(); local
965 final Object one = new Object(); local
1011 final Object one = new Object(); local
1163 final Object one = new Object(); local
1209 final Object one = new Object(); local
1255 final Object one = new Object(); local
1407 final Object one = new Object(); local
1453 final Object one = new Object(); local
1499 final Object one = new Object(); local
    [all...]
  /external/llvm/lib/Target/R600/
R600ISelLowering.cpp 516 // Instruction is left unmodified if its not the last one of its type
893 SDValue one = DAG.getConstant(1, HalfVT); local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_arit.c 262 if(a == bld->one)
265 return bld->one;
276 return LLVMConstFSub(bld->one, a);
278 return LLVMConstSub(bld->one, a);
281 return LLVMBuildFSub(builder, bld->one, a, "");
283 return LLVMBuildSub(builder, bld->one, a, "");
312 if(a == bld->one || b == bld->one)
313 return bld->one;
341 res = lp_build_min_simple(bld, res, bld->one);
1178 LLVMValueRef one; local
2182 LLVMValueRef one = lp_build_const_vec(gallivm, bld->type, 1.0); local
2400 LLVMValueRef one = lp_build_const_vec(gallivm, bld->type, 1.0); local
2726 LLVMValueRef one = LLVMConstBitCast(bld->one, bld->int_vec_type); local
2793 LLVMValueRef one = LLVMConstBitCast(bld->one, int_vec_type); local
    [all...]
  /external/mesa3d/src/gallium/drivers/svga/
svga_tgsi_insn.c 486 * in one slot at least:
1120 struct src_register zero, one; local
1233 struct src_register one = scalar( get_zero_immediate( emit ), local
1377 struct src_register one, zero; local
1724 struct src_register one = local
2821 struct src_register one = scalar( get_zero_immediate( emit ), local
    [all...]
  /external/netperf/
nettest_bsd.c 441 For those options taking two parms, at least one must be specified;\n\
442 specifying one value without a comma will set both parms to that\n\
595 first being the one for Solaris below. The need for this kludge
635 /* there exists at least one platform - Solaris 10 - that does not
636 seem to completely honor the ai_protocol and/or ai_socktype one
863 int one;
957 IPPROT_UDP, and while HP-UX, and I suspect no-one else on the
991 one = 1;
995 (char *)&one,
996 sizeof(one)) == SOCKET_ERROR)
858 int one; local
1014 int one = 1; local
3588 int one = 1; local
9088 int one = 1; local
    [all...]
  /external/opencv/cv/src/
mycvHaarDetectObjects.cpp 432 * whether (op - res - one) underflowed.
435 register int op, res, one; local
440 /* "one" starts at the highest power of four <= than the argument. */
442 one = 1 << 30; /* second-to-top bit set */
443 while (one > op) one >>= 2;
445 while (one != 0) {
446 if (op >= res + one) {
447 op = op - (res + one);
448 res = res + 2 * one;
    [all...]
  /external/openssl/crypto/modes/
gcm128.c 150 const union { long one; char little; } is_endian = {1}; member in union:__anon12013
310 const union { long one; char little; } is_endian = {1}; member in union:__anon12014
340 const union { long one; char little; } is_endian = {1}; member in union:__anon12015
412 const union { long one; char little; } is_endian = {1}; member in union:__anon12016
458 * [should] give ~50% improvement... One could have PACK()-ed
591 const union { long one; char little; } is_endian = {1}; member in union:__anon12017
696 const union { long one; char little; } is_endian = {1}; member in union:__anon12018
777 const union { long one; char little; } is_endian = {1}; member in union:__anon12019
914 const union { long one; char little; } is_endian = {1}; member in union:__anon12020
1094 const union { long one; char little; } is_endian = {1} member in union:__anon12021
1278 const union { long one; char little; } is_endian = {1}; member in union:__anon12022
1393 const union { long one; char little; } is_endian = {1}; member in union:__anon12023
1514 const union { long one; char little; } is_endian = {1}; member in union:__anon12024
    [all...]
  /external/skia/experimental/PdfViewer/src/
SkPdfRenderer.cpp 518 // TODO(edisonn): assumes RGB for now, since it is the only one implemented
585 SkScalar one = SkIntToScalar(1); local
587 SkPoint from[4] = {SkPoint::Make(z, z), SkPoint::Make(one, z),
588 SkPoint::Make(one, one), SkPoint::Make(z, one)};
589 SkPoint to[4] = {SkPoint::Make(z, one), SkPoint::Make(one, one),
590 SkPoint::Make(one, z), SkPoint::Make(z, z)}
    [all...]
  /external/skia/tests/
PathOpsOpTest.cpp 359 SkPath one, two; local
360 one.addRect(0, 0, 6, 6, SkPath::kCW_Direction);
362 testPathOp(reporter, one, two, kIntersect_PathOp, filename);
366 SkPath one, two; local
367 one.addRect(0, 0, 6, 6, SkPath::kCW_Direction);
369 testPathOp(reporter, one, two, kUnion_PathOp, filename);
373 SkPath one, two; local
374 one.addRect(0, 0, 6, 6, SkPath::kCW_Direction);
376 testPathOp(reporter, one, two, kDifference_PathOp, filename);
380 SkPath one, two local
387 SkPath one, two; local
394 SkPath one, two; local
401 SkPath one, two; local
408 SkPath one, two; local
    [all...]
  /external/valgrind/main/VEX/priv/
host_arm64_isel.c 433 encoding, and we need to translate that to an ARM64 FP one:
586 (since there is only one calling convention) and so we always
833 result. The expression may only be a 64-bit one.
1472 ARM64RIL* one = mb_mkARM64RIL_I(1); local
1494 ARM64RIL* one = mb_mkARM64RIL_I(1); local
2117 HReg one = newVRegI(env); local
2175 ARM64RIL* one = mb_mkARM64RIL_I(1); local
2182 HReg one = newVRegI(env); local
6626 HReg one = newVRegI(env); local
6780 ARM64RIL* one = mb_mkARM64RIL_I(1); local
    [all...]
host_arm_isel.c 317 encoding, and we need to translate that to an ARMvfp one:
467 (since there is only one calling convention) and so we always
740 result. The expression may only be a 32-bit one.
809 result. The expression may only be a 32-bit one.
875 result. The expression may only be a 32-bit one.
943 without knowing (before this call) which one.
1073 ARMRI84* one = ARMRI84_I84(1,0); local
1089 ARMRI84* one = ARMRI84_I84(1,0); local
6124 ARMRI84* one = ARMRI84_I84(1,0); local
    [all...]

Completed in 1364 milliseconds

<<11121314151617181920>>