HomeSort by relevance Sort by last modified time
    Searched refs:Vals (Results 1 - 25 of 52) sorted by null

1 2 3

  /external/clang/test/CodeGen/
2003-06-22-UnionCrash.c 7 } Vals;
  /external/lzma/CPP/7zip/Archive/7z/
7zItem.h 96 CRecordVector<UInt32> Vals;
101 Vals.ClearAndSetSize(newSize);
107 Vals.Clear();
113 Vals.ReserveDown();
122 CRecordVector<UInt64> Vals;
127 Vals.Clear();
133 Vals.ReserveDown();
140 value = Vals[index];
7zIn.cpp 630 crcs.Vals.ClearAndSetSize(numItems);
631 UInt32 *p = &crcs.Vals[0];
940 digests.Vals[k] = folders.FolderCRCs.Vals[i];
950 digests.Vals[k] = crc;
972 digests.Vals[k] = folders.FolderCRCs.Vals[i];
978 digests.Vals[k] = 0;
1024 // digests.Vals.ClearAndSetSize(folders.NumFolders);
1030 // digests.Vals[i] = 0;
    [all...]
7zOut.cpp 351 WriteUInt32(digests.Vals[i]);
445 digests2.Vals.Add(digests.Vals[digestIndex]);
506 WriteUInt64(v.Vals[i]);
518 outFolders.FolderUnpackCRCs.Vals.Add(CrcCalc(data, data.Size()));
565 digests.Vals.Add(file.Crc);
885 while (index >= Vals.Size())
886 Vals.Add(0);
887 Vals[index] = value;
  /external/llvm/include/llvm/Bitcode/
BitstreamWriter.h 298 /// it is the record code to emit before the Vals, which must not contain
301 void EmitRecordWithAbbrevImpl(unsigned Abbrev, ArrayRef<uintty> Vals,
330 assert(RecordIdx < Vals.size() && "Invalid abbrev/record");
331 EmitAbbreviatedLiteral(Op, Vals[RecordIdx]);
341 assert(RecordIdx == Vals.size() &&
354 EmitVBR(static_cast<uint32_t>(Vals.size()-RecordIdx), 6);
357 for (unsigned e = Vals.size(); RecordIdx != e; ++RecordIdx)
358 EmitAbbreviatedField(EltEnc, Vals[RecordIdx]);
367 assert(RecordIdx == Vals.size() &&
370 EmitVBR(static_cast<uint32_t>(Vals.size()-RecordIdx), 6)
    [all...]
  /frameworks/compile/slang/BitWriter_3_2/
BitcodeWriter.cpp 145 SmallVector<unsigned, 64> Vals;
151 Vals.push_back(Str[i]);
155 Stream.EmitRecord(Code, Vals, AbbrevToUse);
477 SmallVector<unsigned, 64> Vals;
484 Vals.push_back(VE.getTypeID(GV.getType()));
485 Vals.push_back(GV.isConstant());
486 Vals.push_back(GV.isDeclaration() ? 0 :
488 Vals.push_back(getEncodedLinkage(GV));
489 Vals.push_back(Log2_32(GV.getAlignment())+1);
490 Vals.push_back(GV.hasSection() ? SectionMap[GV.getSection()] : 0)
    [all...]
  /frameworks/compile/slang/BitWriter_2_9_func/
BitcodeWriter.cpp 145 SmallVector<unsigned, 64> Vals;
151 Vals.push_back(Str[i]);
155 Stream.EmitRecord(Code, Vals, AbbrevToUse);
464 SmallVector<unsigned, 64> Vals;
471 Vals.push_back(VE.getTypeID(GV.getType()));
472 Vals.push_back(GV.isConstant());
473 Vals.push_back(GV.isDeclaration() ? 0 :
475 Vals.push_back(getEncodedLinkage(GV));
476 Vals.push_back(Log2_32(GV.getAlignment())+1);
477 Vals.push_back(GV.hasSection() ? SectionMap[GV.getSection()] : 0)
    [all...]
  /external/llvm/include/llvm/Support/
Format.h 80 std::tuple<Ts...> Vals;
86 return _snprintf(Buffer, BufferSize, Fmt, std::get<Is>(Vals)...);
88 return snprintf(Buffer, BufferSize, Fmt, std::get<Is>(Vals)...);
93 format_object(const char *fmt, const Ts &... vals)
94 : format_object_base(fmt), Vals(vals...) {}
111 inline format_object<Ts...> format(const char *Fmt, const Ts &... Vals) {
112 return format_object<Ts...>(Fmt, Vals...);
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp 150 SmallVector<unsigned, 64> Vals;
156 Vals.push_back(Str[i]);
160 Stream.EmitRecord(Code, Vals, AbbrevToUse);
573 SmallVector<uint16_t, 64> Vals;
576 Vals.push_back(getEncodedComdatSelectionKind(*C));
579 Vals.push_back(Size);
581 Vals.push_back((unsigned char)Chr);
582 Stream.EmitRecord(bitc::MODULE_CODE_COMDAT, Vals, /*AbbrevToUse=*/0);
583 Vals.clear();
608 uint64_t Vals[] = {bitc::MODULE_CODE_VSTOFFSET, 0}
    [all...]
  /frameworks/compile/slang/BitWriter_2_9/
BitcodeWriter.cpp 122 SmallVector<unsigned, 64> Vals;
128 Vals.push_back(Str[i]);
132 Stream.EmitRecord(Code, Vals, AbbrevToUse);
466 SmallVector<unsigned, 64> Vals;
473 Vals.push_back(VE.getTypeID(GV.getType()));
474 Vals.push_back(GV.isConstant());
475 Vals.push_back(GV.isDeclaration() ? 0 :
477 Vals.push_back(getEncodedLinkage(GV));
478 Vals.push_back(Log2_32(GV.getAlignment())+1);
479 Vals.push_back(GV.hasSection() ? SectionMap[GV.getSection()] : 0)
    [all...]
  /external/clang/lib/CodeGen/
CGLoopInfo.cpp 37 Metadata *Vals[] = {MDString::get(Ctx, "llvm.loop.vectorize.width"),
40 Args.push_back(MDNode::get(Ctx, Vals));
45 Metadata *Vals[] = {MDString::get(Ctx, "llvm.loop.interleave.count"),
48 Args.push_back(MDNode::get(Ctx, Vals));
53 Metadata *Vals[] = {MDString::get(Ctx, "llvm.loop.unroll.count"),
56 Args.push_back(MDNode::get(Ctx, Vals));
61 Metadata *Vals[] = {MDString::get(Ctx, "llvm.loop.vectorize.enable"),
65 Args.push_back(MDNode::get(Ctx, Vals));
77 Metadata *Vals[] = {MDString::get(Ctx, Name)};
78 Args.push_back(MDNode::get(Ctx, Vals));
    [all...]
  /external/clang/test/SemaTemplate/
instantiate-expr-1.cpp 182 template<typename T> class Vals {};
183 template<> class Vals<int> { public: static const int i = 1; };
184 template<> class Vals<float> { public: static const double i; };
186 __asm("addl $1, %0" : "=r" (o) : "0"(Vals<T>::i)); // expected-error {{input with type 'double' matching output with type 'float'}}
  /external/llvm/lib/IR/
MDBuilder.cpp 45 SmallVector<Metadata *, 4> Vals(Weights.size() + 1);
46 Vals[0] = createString("branch_weights");
50 Vals[i + 1] = createConstant(ConstantInt::get(Int32Ty, Weights[i]));
52 return MDNode::get(Context, Vals);
131 SmallVector<Metadata *, 4> Vals(Fields.size() * 3);
134 Vals[i * 3 + 0] = createConstant(ConstantInt::get(Int64, Fields[i].Offset));
135 Vals[i * 3 + 1] = createConstant(ConstantInt::get(Int64, Fields[i].Size));
136 Vals[i * 3 + 2] = Fields[i].TBAA;
138 return MDNode::get(Context, Vals);
  /external/llvm/utils/PerfectShuffle/
PerfectShuffle.cpp 158 static void PrintOperation(unsigned ValNo, unsigned short Vals[]) {
159 unsigned short ThisOp = Vals[ValNo];
170 if (Vals[i] == ShufTab[ThisOp].Arg0) {
176 if (!ShufTab[Vals[ValNo]].Op->isOnlyLHSOperator()) {
184 if (Vals[i] == ShufTab[ThisOp].Arg1) {
200 static void EvaluateOps(unsigned short Elt, unsigned short Vals[],
206 if (Vals[i] == Elt) return;
211 EvaluateOps(Arg0, Vals, NumVals);
213 EvaluateOps(Arg1, Vals, NumVals);
215 Vals[NumVals++] = Elt
    [all...]
  /external/llvm/bindings/go/llvm/
IRBindings.h 67 inline Metadata **unwrap(LLVMMetadataRef *Vals) {
68 return reinterpret_cast<Metadata**>(Vals);
  /external/llvm/lib/Bitcode/Reader/
BitstreamReader.cpp 160 SmallVectorImpl<uint64_t> &Vals,
166 Vals.push_back(ReadVBR64(6));
188 Vals.push_back(Op.getLiteralValue());
194 Vals.push_back(readAbbreviatedField(*this, Op));
215 Vals.push_back(readAbbreviatedField(*this, EltEnc));
231 Vals.append(NumElts, 0);
244 // Otherwise, unpack into Vals with zero extension.
246 Vals.push_back((unsigned char)*Ptr++);
  /external/llvm/utils/TableGen/
CodeEmitterGen.cpp 183 const std::vector<RecordVal> &Vals = R->getValues();
192 for (unsigned i = 0, e = Vals.size(); i != e; ++i) {
194 if (!CGI.Operands.hasOperandNamed(Vals[i].getName(), OpIdx))
203 for (unsigned i = 0, e = Vals.size(); i != e; ++i) {
206 if (Vals[i].getPrefix() || Vals[i].getValue()->isComplete())
209 AddCodeToMergeInOperand(R, BI, Vals[i].getName(), NumberedOp,
  /external/llvm/lib/CodeGen/AsmPrinter/
DebugLocEntry.h 125 void addValues(ArrayRef<DebugLocEntry::Value> Vals) {
126 Values.append(Vals.begin(), Vals.end());
  /external/llvm/include/llvm/IR/
Value.h 747 inline Value **unwrap(LLVMValueRef *Vals) {
748 return reinterpret_cast<Value**>(Vals);
752 inline T **unwrap(LLVMValueRef *Vals, unsigned Length) {
754 for (LLVMValueRef *I = Vals, *E = Vals + Length; I != E; ++I)
758 return reinterpret_cast<T**>(Vals);
761 inline LLVMValueRef *wrap(const Value **Vals) {
762 return reinterpret_cast<LLVMValueRef*>(const_cast<Value**>(Vals));
  /external/lzma/C/
7z.h 78 UInt32 *Vals;
84 // UInt64 *Vals;
85 CNtfsFileTime *Vals;
7zArcIn.c 67 #define SzBitUi32s_Init(p) { (p)->Defs = 0; (p)->Vals = 0; }
72 MY_ALLOC(UInt32, p->Vals, num, alloc);
79 IAlloc_Free(alloc, p->Vals); p->Vals = 0;
82 #define SzBitUi64s_Init(p) { (p)->Defs = 0; (p)->Vals = 0; }
87 IAlloc_Free(alloc, p->Vals); p->Vals = 0;
399 UInt32 *vals; local
401 MY_ALLOC(UInt32, crcs->Vals, numItems, alloc);
404 vals = crcs->Vals;
1100 CNtfsFileTime *vals; local
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
BasicValueFactory.cpp 109 llvm::ImmutableList<SVal> Vals) {
112 CompoundValData::Profile(ID, T, Vals);
119 new (D) CompoundValData(T, Vals);
  /external/llvm/lib/CodeGen/
RegisterCoalescer.cpp 512 LiveInterval::iterator ValS =
514 if (ValS == IntB.end())
520 LIS->getInstructionFromIndex(ValS->end.getPrevSlot());
524 // Okay, we now know that ValS ends in the same block that the CopyMI
527 if (ValS+1 != BS) return false;
531 SlotIndex FillerStart = ValS->end, FillerEnd = BS->start;
538 // [ValS.end, BS.begin) of either value number, then we merge the
543 if (BValNo != ValS->valno)
544 IntB.MergeValueNumberInto(BValNo, ValS->valno);
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeTypesGeneric.cpp 127 SmallVector<SDValue, 8> Vals;
129 Vals.push_back(DAG.getNode(
135 for (unsigned e = Vals.size(); e - Slot > 2; Slot += 2, e += 1) {
138 SDValue LHS = Vals[Slot];
139 SDValue RHS = Vals[Slot + 1];
144 Vals.push_back(DAG.getNode(ISD::BUILD_PAIR, dl,
150 Lo = Vals[Slot++];
151 Hi = Vals[Slot++];
  /external/llvm/unittests/IR/
ConstantsTest.cpp 400 Constant *Vals[] = {ConstantInt::get(T, 0), ConstantInt::get(T, 1)};
401 Constant *CDV = ConstantArray::get(ArrayTy, Vals);
409 Constant *Vals[] = {ConstantFP::get(T, 0), ConstantFP::get(T, 1)};
410 Constant *CDV = ConstantArray::get(ArrayTy, Vals);
422 Constant *Vals[] = {ConstantInt::get(T, 0), ConstantInt::get(T, 1)};
423 Constant *CDV = ConstantVector::get(Vals);
430 Constant *Vals[] = {ConstantFP::get(T, 0), ConstantFP::get(T, 1)};
431 Constant *CDV = ConstantVector::get(Vals);

Completed in 1245 milliseconds

1 2 3