Home
last modified time | relevance | path

Searched refs:V0 (Results 1 – 25 of 64) sorted by relevance

123

/external/guava/guava/src/com/google/common/collect/
DGenericMapMaker.java50 public abstract class GenericMapMaker<K0, V0> {
61 RemovalListener<K0, V0> removalListener;
70 abstract GenericMapMaker<K0, V0> keyEquivalence(Equivalence<Object> equivalence); in keyEquivalence()
75 public abstract GenericMapMaker<K0, V0> initialCapacity(int initialCapacity); in initialCapacity()
80 abstract GenericMapMaker<K0, V0> maximumSize(int maximumSize); in maximumSize()
85 public abstract GenericMapMaker<K0, V0> concurrencyLevel(int concurrencyLevel); in concurrencyLevel()
91 public abstract GenericMapMaker<K0, V0> weakKeys(); in weakKeys()
97 public abstract GenericMapMaker<K0, V0> weakValues(); in weakValues()
110 public abstract GenericMapMaker<K0, V0> softValues(); in softValues()
115 abstract GenericMapMaker<K0, V0> expireAfterWrite(long duration, TimeUnit unit); in expireAfterWrite()
[all …]
DMultimapBuilder.java71 public abstract class MultimapBuilder<K0, V0> {
389 public <V0> SortedSetMultimapBuilder<K0, V0> treeSetValues(final Comparator<V0> comparator) {
391 return new SortedSetMultimapBuilder<K0, V0>() {
393 public <K extends K0, V extends V0> SortedSetMultimap<K, V> build() {
404 public <V0 extends Enum<V0>> SetMultimapBuilder<K0, V0> enumSetValues(
405 final Class<V0> valueClass) {
407 return new SetMultimapBuilder<K0, V0>() {
409 public <K extends K0, V extends V0> SetMultimap<K, V> build() {
413 Supplier<Set<V>> factory = (Supplier) new EnumSetSupplier<V0>(valueClass);
425 public abstract <K extends K0, V extends V0> Multimap<K, V> build();
[all …]
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
DGenericMapMaker.java45 public abstract class GenericMapMaker<K0, V0> {
55 public abstract GenericMapMaker<K0, V0> initialCapacity(int initialCapacity); in initialCapacity()
60 abstract GenericMapMaker<K0, V0> maximumSize(int maximumSize); in maximumSize()
65 public abstract GenericMapMaker<K0, V0> concurrencyLevel(int concurrencyLevel); in concurrencyLevel()
70 abstract GenericMapMaker<K0, V0> expireAfterWrite(long duration, TimeUnit unit); in expireAfterWrite()
80 public abstract <K extends K0, V extends V0> ConcurrentMap<K, V> makeMap(); in makeMap()
86 public abstract <K extends K0, V extends V0> ConcurrentMap<K, V> makeComputingMap( in makeComputingMap()
/external/scrypt/lib/crypto/
Dcrypto_scrypt-neon.c197 void * B0, * V0, * XY0; in crypto_scrypt() local
236 if ((errno = posix_memalign(&V0, 64, 128 * r * N)) != 0) in crypto_scrypt()
238 V = (uint32_t *)(V0); in crypto_scrypt()
248 if ((V0 = malloc(128 * r * N + 63)) == NULL) in crypto_scrypt()
250 V = (uint32_t *)(((uintptr_t)(V0) + 63) & ~ (uintptr_t)(63)); in crypto_scrypt()
254 if ((V0 = mmap(NULL, 128 * r * N, PROT_READ | PROT_WRITE, in crypto_scrypt()
262 V = (uint32_t *)(V0); in crypto_scrypt()
287 if (munmap(V0, 128 * r * N)) in crypto_scrypt()
290 free(V0); in crypto_scrypt()
Dcrypto_scrypt-sse.c270 void * B0, * V0, * XY0; in crypto_scrypt() local
309 if ((errno = posix_memalign(&V0, 64, 128 * r * N)) != 0) in crypto_scrypt()
311 V = (uint32_t *)(V0); in crypto_scrypt()
321 if ((V0 = malloc(128 * r * N + 63)) == NULL) in crypto_scrypt()
323 V = (uint32_t *)(((uintptr_t)(V0) + 63) & ~ (uintptr_t)(63)); in crypto_scrypt()
327 if ((V0 = mmap(NULL, 128 * r * N, PROT_READ | PROT_WRITE, in crypto_scrypt()
335 V = (uint32_t *)(V0); in crypto_scrypt()
360 if (munmap(V0, 128 * r * N)) in crypto_scrypt()
363 free(V0); in crypto_scrypt()
/external/llvm/test/Transforms/SLPVectorizer/X86/
Dextract.ll13 %V0 = extractelement <2 x double> %LD, i32 0
17 %A0 = fadd double %V0, 0.0
31 %V0 = extractelement <2 x double> %LD, i32 0
35 %A0 = fadd double %V0, 1.2
49 %V0 = extractelement <4 x double> %LD, i32 0 ; <--- invalid size.
53 %A0 = fadd double %V0, 5.5
Dvalue-bug.ll76 ; CHECK: %[[V0:.+]] = extractelement <2 x double> <double 1.000000e+00, double 2.000000e+00>, i32 0
77 ; CHECK: %[[V1:.+]] = insertelement <4 x double> undef, double %[[V0]], i32 1
/external/webp/src/enc/
Dpicture_tools.c126 #define BLEND(V0, V1, ALPHA) \ argument
127 ((((V0) * (255 - (ALPHA)) + (V1) * (ALPHA)) * 0x101) >> 16)
128 #define BLEND_10BIT(V0, V1, ALPHA) \ argument
129 ((((V0) * (1020 - (ALPHA)) + (V1) * (ALPHA)) * 0x101) >> 18)
142 const int V0 = VP8RGBToV(4 * red, 4 * green, 4 * blue, 4 * YUV_HALF); in WebPBlendAlpha() local
168 v[x] = BLEND_10BIT(V0, v[x], alpha); in WebPBlendAlpha()
173 v[x] = BLEND_10BIT(V0, v[x], alpha); in WebPBlendAlpha()
/external/fdlibm/
De_j1.c147 static const double V0[5] = { variable
149 static double V0[5] = {
208 v = one+z*(V0[0]+z*(V0[1]+z*(V0[2]+z*(V0[3]+z*V0[4]))));
/external/clang/test/CodeGenObjC/
Darc-literals.m47 // CHECK-NEXT: [[V0:%.*]] = load i8*, i8** [[A]],
48 // CHECK-NEXT: store i8* [[V0]], i8** [[T0]]
59 // CHECK: call void (...) @clang.arc.use(i8* [[V0]], i8* [[V1]])
83 // CHECK-NEXT: [[V0:%.*]] = load i8*, i8** [[K1]],
84 // CHECK-NEXT: store i8* [[V0]], i8** [[T0]]
103 // CHECK-NEXT: call void (...) @clang.arc.use(i8* [[V0]], i8* [[V1]], i8* [[V2]], i8* [[V3]])
135 // CHECK-NEXT: [[V0:%.*]] = bitcast i8* [[T4]] to [[B]]*
136 // CHECK-NEXT: [[V1:%.*]] = bitcast [[B]]* [[V0]] to i8*
155 // CHECK-NEXT: [[T0:%.*]] = bitcast [[B]]* [[V0]] to i8*
/external/llvm/test/TableGen/
Dlist-element-bitref.td5 bits<2> V0 = L[0]{1-0};
13 // CHECK-NEXT: bits<2> V0 = { 0, 1 };
/external/skia/src/sfnt/
DSkOTTable_OS_2.h32 struct V0 : SkOTTableOS2_V0 { } v0; struct
46 SK_COMPILE_ASSERT(sizeof(SkOTTableOS2::Version::V0) == 78, sizeof_SkOTTableOS2__V0_not_78);
/external/llvm/unittests/Analysis/
DScalarEvolutionTest.cpp48 Value *V0 = new GlobalVariable(M, Ty, false, GlobalValue::ExternalLinkage, Init, "V0"); in TEST_F() local
56 const SCEV *S0 = SE.getSCEV(V0); in TEST_F()
76 EXPECT_EQ(cast<SCEVUnknown>(M0->getOperand(1))->getValue(), V0); in TEST_F()
82 V1->replaceAllUsesWith(V0); in TEST_F()
85 EXPECT_EQ(cast<SCEVUnknown>(M0->getOperand(1))->getValue(), V0); in TEST_F()
86 EXPECT_EQ(cast<SCEVUnknown>(M1->getOperand(1))->getValue(), V0); in TEST_F()
87 EXPECT_EQ(cast<SCEVUnknown>(M2->getOperand(1))->getValue(), V0); in TEST_F()
/external/scrypt/patches/
Darm-neon.patch329 + void * B0, * V0, * XY0;
368 + if ((errno = posix_memalign(&V0, 64, 128 * r * N)) != 0)
370 + V = (uint32_t *)(V0);
380 + if ((V0 = malloc(128 * r * N + 63)) == NULL)
382 + V = (uint32_t *)(((uintptr_t)(V0) + 63) & ~ (uintptr_t)(63));
386 + if ((V0 = mmap(NULL, 128 * r * N, PROT_READ | PROT_WRITE,
394 + V = (uint32_t *)(V0);
419 + if (munmap(V0, 128 * r * N))
422 + free(V0);
/external/llvm/lib/Target/Mips/
DMipsSEISelDAGToDAG.cpp135 unsigned V0, V1, GlobalBaseReg = MipsFI->getGlobalBaseReg(); in initGlobalBaseReg() local
140 V0 = RegInfo.createVirtualRegister(RC); in initGlobalBaseReg()
151 BuildMI(MBB, I, DL, TII.get(Mips::LUi64), V0) in initGlobalBaseReg()
153 BuildMI(MBB, I, DL, TII.get(Mips::DADDu), V1).addReg(V0) in initGlobalBaseReg()
165 BuildMI(MBB, I, DL, TII.get(Mips::LUi), V0) in initGlobalBaseReg()
167 BuildMI(MBB, I, DL, TII.get(Mips::ADDiu), GlobalBaseReg).addReg(V0) in initGlobalBaseReg()
180 BuildMI(MBB, I, DL, TII.get(Mips::LUi), V0) in initGlobalBaseReg()
182 BuildMI(MBB, I, DL, TII.get(Mips::ADDu), V1).addReg(V0).addReg(Mips::T9); in initGlobalBaseReg()
207 MF.getRegInfo().addLiveIn(Mips::V0); in initGlobalBaseReg()
208 MBB.addLiveIn(Mips::V0); in initGlobalBaseReg()
[all …]
DMips16ISelDAGToDAG.cpp77 unsigned V0, V1, V2, GlobalBaseReg = MipsFI->getGlobalBaseReg(); in initGlobalBaseReg() local
80 V0 = RegInfo.createVirtualRegister(RC); in initGlobalBaseReg()
84 BuildMI(MBB, I, DL, TII.get(Mips::GotPrologue16), V0). in initGlobalBaseReg()
89 BuildMI(MBB, I, DL, TII.get(Mips::SllX16), V2).addReg(V0).addImm(16); in initGlobalBaseReg()
DMipsRegisterInfo.td90 def V0 : MipsGPRReg< 2, "2">, DwarfRegNum<[2]>;
124 def V0_64 : Mips64GPRReg< 2, "2", [V0]>, DwarfRegNum<[2]>;
278 V0, V1, A0, A1, A2, A3,
295 V0, V1, A0, A1, A2, A3)>;
303 V0, V1, A0, A1, A2, A3)>;
311 V0, V1,
331 V0, V1, A0, A1, A2, A3,
337 V0, V1, A0, A1, A2, A3,
DMipsCallingConv.td93 // i32 are returned in registers V0, V1, A0, A1
94 CCIfType<[i32], CCAssignToReg<[V0, V1, A0, A1]>>,
243 // i32 are returned in registers V0, V1
244 CCIfType<[i32], CCAssignToReg<[V0, V1]>>,
302 // except for AT, V0 and T9, are available to be used as argument registers.
350 CCIfType<[i32], CCAssignToReg<[V0, V1, A0, A1]>>
424 CalleeSavedRegs<(add V0, V1, FP,
DMipsLongBranch.cpp444 BuildMI(MBB, I, DL, TII->get(Mips::LUi), Mips::V0) in emitGPDisp()
446 BuildMI(MBB, I, DL, TII->get(Mips::ADDiu), Mips::V0) in emitGPDisp()
447 .addReg(Mips::V0).addExternalSymbol("_gp_disp", MipsII::MO_ABS_LO); in emitGPDisp()
448 MBB.removeLiveIn(Mips::V0); in emitGPDisp()
/external/llvm/lib/Target/ARM/
DARMISelDAGToDAG.cpp264 SDNode *createGPRPairNode(EVT VT, SDValue V0, SDValue V1);
265 SDNode *createSRegPairNode(EVT VT, SDValue V0, SDValue V1);
266 SDNode *createDRegPairNode(EVT VT, SDValue V0, SDValue V1);
267 SDNode *createQRegPairNode(EVT VT, SDValue V0, SDValue V1);
270 SDNode *createQuadSRegsNode(EVT VT, SDValue V0, SDValue V1, SDValue V2, SDValue V3);
271 SDNode *createQuadDRegsNode(EVT VT, SDValue V0, SDValue V1, SDValue V2, SDValue V3);
272 SDNode *createQuadQRegsNode(EVT VT, SDValue V0, SDValue V1, SDValue V2, SDValue V3);
1564 SDNode *ARMDAGToDAGISel::createGPRPairNode(EVT VT, SDValue V0, SDValue V1) { in createGPRPairNode() argument
1565 SDLoc dl(V0.getNode()); in createGPRPairNode()
1570 const SDValue Ops[] = { RegClass, V0, SubReg0, V1, SubReg1 }; in createGPRPairNode()
[all …]
/external/mesa3d/src/mesa/main/
Dmacros.h349 #define ASSIGN_4V( V, V0, V1, V2, V3 ) \ argument
351 V[0] = V0; \
479 #define ASSIGN_3V( V, V0, V1, V2 ) \ argument
481 V[0] = V0; \
582 #define ASSIGN_2V( V, V0, V1 ) \ argument
584 V[0] = V0; \
/external/clang/test/Parser/
Drecovery.cpp151 enum class EC3 { V0 = 0, V5 = 5 }; // expected-note {{declared here}}
166 case EC3::V0: break;
/external/clang/test/CodeGen/
Dext-vector.c282 int4 test15(uint4 V0) { in test15() argument
284 int4 V = !V0; in test15()
/external/clang/lib/Driver/
DToolChains.h415 bool isIPhoneOSVersionLT(unsigned V0, unsigned V1=0, unsigned V2=0) const {
417 return TargetVersion < VersionTuple(V0, V1, V2);
420 bool isMacosxVersionLT(unsigned V0, unsigned V1=0, unsigned V2=0) const {
422 return TargetVersion < VersionTuple(V0, V1, V2);
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/pkb/es-ES/
Des-ES_zl0_kdt_lfz3.pkb55V0���Q%4ȄF��6<tuQ�HaP�w�{��T��1P�81E��|l�p���x�� ʟ��t�f

123