HomeSort by relevance Sort by last modified time
    Searched defs:Size (Results 376 - 400 of 433) sorted by null

<<1112131415161718

  /external/llvm/lib/Target/SystemZ/
SystemZISelLowering.cpp 390 if (Constraint.size() == 1) {
490 std::string Suffix(Constraint.data() + 2, Constraint.size() - 2);
500 if (Constraint.size() == 1) {
687 for (unsigned I = 0, E = ArgLocs.size(); I != E; ++I) {
749 // first stack vararg would be. The 1-byte size here is arbitrary.
789 for (unsigned I = 0, E = ArgLocs.size(); I != E; ++I) {
841 for (unsigned I = 0, E = ArgLocs.size(); I != E; ++I) {
    [all...]
  /external/llvm/lib/Target/X86/
X86FastISel.cpp 741 // constant scale size. See if we can push the scale into immediates.
    [all...]
X86InstrInfo.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCompares.cpp 222 // We need TD information to know the pointer size unless this is inbounds.
387 // If the index is larger than the pointer size of the target, truncate the
527 uint64_t Size = DL.getTypeAllocSize(GTI.getIndexedType());
528 Offset += Size*CI->getSExtValue();
557 uint64_t Size = DL.getTypeAllocSize(GTI.getIndexedType());
558 Offset += Size*CI->getSExtValue();
580 // the pointer size, so get it.
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
AddressSanitizer.cpp 477 uint64_t Size;
538 ConstantInt *Size = dyn_cast<ConstantInt>(II.getArgOperand(0));
539 // If size argument is undefined, don't do anything.
540 if (Size->isMinusOne()) return;
541 // Check that size doesn't saturate uint64_t and can
543 const uint64_t SizeValue = Size->getValue().getLimitedValue();
562 // alloca() may be called with 0 size, ignore it.
575 void poisonAlloca(Value *V, uint64_t Size, IRBuilder<> &IRB, bool DoPoison);
578 int Size);
773 // Instrument unusual size or unusual alignment
    [all...]
MemorySanitizer.cpp 432 report_fatal_error("unsupported pointer size");
731 InstrumentationList.size() + StoreList.size() >
    [all...]
  /external/llvm/lib/Transforms/Scalar/
GVN.cpp 336 for (unsigned i = 0, e = deps.size(); i != e; ++i) {
868 // If the store and reload are the same size, we can always reuse it.
919 // Truncate the integer to the right size now.
    [all...]
SROA.cpp 356 void insertUse(Instruction &I, const APInt &Offset, uint64_t Size,
358 // Completely skip uses which have a zero size or start either before or
360 if (Size == 0 || Offset.uge(AllocSize)) {
361 DEBUG(dbgs() << "WARNING: Ignoring " << Size << " byte use @" << Offset
362 << " which has zero size or starts outside of the "
370 uint64_t EndOffset = BeginOffset + Size;
373 // formulated to handle even the case where "BeginOffset + Size" overflows.
379 if (Size > AllocSize - BeginOffset) {
380 DEBUG(dbgs() << "WARNING: Clamping a " << Size << " byte use @" << Offset
408 // size readily available
    [all...]
  /external/llvm/utils/TableGen/
CodeGenDAGPatterns.cpp 87 for (unsigned i = 0, e = LegalTypes.size(); i != e; ++i)
98 if (TypeVec.size() == 1) return true;
110 for (unsigned i = 0, e = TypeVec.size(); i != e; ++i)
119 for (unsigned i = 0, e = TypeVec.size(); i != e; ++i)
127 for (unsigned i = 0, e = TypeVec.size(); i != e; ++i)
136 for (unsigned i = 0, e = TypeVec.size(); i != e; ++i)
148 for (unsigned i = 0, e = TypeVec.size(); i != e; ++i) {
157 if (TypeVec.size() == 1)
174 assert(TypeVec.size() >= 1 && InVT.TypeVec.size() >= 1 && "No unknowns")
    [all...]
  /art/runtime/
dex_file.h 81 uint32_t file_size_; // size of entire file
239 uint32_t Size() const {
248 // Size in bytes of the part of the list that is common.
253 // Size in bytes of the whole type list including all the stored elements.
259 uint32_t size_; // size of the list, in entries
271 uint32_t insns_size_in_code_units_; // size of the insns array, in 2 byte code units
391 static const DexFile* Open(const uint8_t* base, size_t size,
396 return OpenMemory(base, size, location, location_checksum, NULL, oat_file, error_msg);
716 return FindProtoId(return_type_idx, &signature_type_idxs[0], signature_type_idxs.size());
873 size_t Size() const
    [all...]
debugger.cc 387 for (size_t i = 0, e = gBreakpoints.size(); i < e; ++i) {
622 for (size_t i = 0; i < pairs.size(); ++i) {
753 CHECK_EQ(gBreakpoints.size(), 0U);
758 CHECK_EQ(deoptimization_requests_.size(), 0U);
942 expandBufAdd4BE(reply, monitor_info.waiters_.size());
943 for (size_t i = 0; i < monitor_info.waiters_.size(); ++i) {
2097 const int32_t size = size_field->GetInt(groups_array_list); local
4392 const size_t size = RoundUp(obj->SizeOf(), kObjectAlignment); local
    [all...]
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
Antlr.Runtime.pas 168 /// <summary>Returns the size of the entire stream.</summary>
174 function Size: Integer;
413 /// but, it is a special case. Since we know the exact size of the file to
453 function Size: Integer;
527 /// Stack grows upwards. When it hits the max, it grows 2x in size
569 /// An array[size num rules] of Map&lt;Integer,Integer&gt; that tracks
    [all...]
  /external/clang/lib/CodeGen/
CGBuiltin.cpp 55 /// integer of the given size.
405 // figure out the object size in more complex cases.
618 Value *Size = EmitScalarExpr(E->getArg(0));
619 return RValue::get(Builder.CreateAlloca(Builder.getInt8Ty(), Size));
644 llvm::APSInt Size, DstSize;
645 if (!E->getArg(2)->EvaluateAsInt(Size, CGM.getContext()) ||
648 if (Size.ugt(DstSize))
654 Value *SizeVal = llvm::ConstantInt::get(Builder.getContext(), Size);
671 llvm::APSInt Size, DstSize;
672 if (!E->getArg(2)->EvaluateAsInt(Size, CGM.getContext()) |
    [all...]
CGDebugInfo.cpp 181 unsigned NumArgs = TArgs->size();
420 unsigned Size = CGM.getContext().getTypeSize(CGM.getContext().VoidPtrTy);
422 llvm::DIType ISATy = DBuilder.createPointerType(ClassTy, Size);
429 ObjTy, "isa", getOrCreateMainFile(), 0, Size, 0, 0, 0, ISATy)));
501 // Bit size, align and offset of the type.
502 uint64_t Size = CGM.getContext().getTypeSize(BT);
505 DBuilder.createBasicType(BTName, Size, Align, Encoding);
510 // Bit size, align and offset of the type.
515 uint64_t Size = CGM.getContext().getTypeSize(Ty);
518 DBuilder.createBasicType("complex", Size, Align, Encoding)
    [all...]
CGExpr.cpp 344 for (unsigned I = 0, N = CommaLHSs.size(); I != N; ++I)
371 for (unsigned I = Adjustments.size(); I != 0; --I) {
414 // storage of suitable size and alignment to contain an object of the
456 // isn't correct, the object-size check isn't supported by LLVM, and we can't
481 uint64_t Size = getContext().getTypeSizeInChars(Ty).getQuantity();
493 llvm::ConstantInt::get(IntPtrTy, Size));
773 /// If this returns a normal address, and if the lvalue's C type is fixed size,
775 /// type of the same size of the lvalue's type. If the lvalue has a variable
    [all...]
TargetInfo.cpp 296 uint64_t Size = Context.getTypeSize(Ty);
297 return Size == 32 || Size == 64;
322 uint64_t Size = 0;
334 Size += Context.getTypeSize(FD->getType());
338 if (Size != Context.getTypeSize(Ty))
529 static bool isRegisterSize(unsigned Size) {
530 return (Size == 8 || Size == 16 || Size == 32 || Size == 64)
    [all...]
  /external/clang/lib/Sema/
SemaDeclAttr.cpp 551 unsigned Size = Args.size();
552 if (Size != 1)
617 StartArg, Args.size(),
630 StartArg, Args.size(),
650 unsigned Size = Args.size();
651 Expr **StartArg = Size == 0 ? nullptr : &Args[0];
653 AssertSharedLockAttr(Attr.getRange(), S.Context, StartArg, Size,
663 unsigned Size = Args.size()
1171 unsigned size = NonNullArgs.size(); local
1302 unsigned size = OwnershipArgs.size(); local
    [all...]
SemaType.cpp 232 for (unsigned i = 0, e = savedAttrs.size() - 1; i != e; ++i)
    [all...]
  /external/clang/lib/Serialization/
ASTReaderDecl.cpp 93 if (I >= R.size())
644 = TemplateArgumentList::CreateCopy(C, TemplArgs.data(), TemplArgs.size());
646 for (unsigned i=0, e = TemplArgLocs.size(); i != e; ++i)
    [all...]
  /external/clang/tools/c-index-test/
c-index-test.c     [all...]
  /external/llvm/include/llvm/Support/
COFF.h 201 IMAGE_SYM_TYPE_UINT = 14, ///< An unsigned integer of natural size.
509 uint32_t Size;
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeVectorTypes.cpp 18 // be a computation in two vectors of half the size. For example, implementing
2801 unsigned size = L->getValueSizeInBits(0); local
    [all...]
  /external/llvm/lib/MC/MCParser/
AsmParser.cpp 370 bool parseDirectiveValue(unsigned Size); // ".byte", ".long", ...
846 if (Split.second.size()) {
888 if (Split.first.size() != IDVal.size()) {
    [all...]
  /external/llvm/lib/Transforms/Utils/
SimplifyCFG.cpp 413 unsigned NumValsBeforeLHS = Vals.size();
417 unsigned NumVals = Vals.size();
447 assert(Vals.size() == NumValsBeforeLHS);
535 if (V1->size() > V2->size())
538 if (V1->size() == 0) return false;
539 if (V1->size() == 1) {
542 for (unsigned i = 0, e = V2->size(); i != e; ++i)
550 unsigned i1 = 0, i2 = 0, e1 = V1->size(), e2 = V2->size();
    [all...]
  /external/chromium_org/third_party/libusb/src/libusb/os/
windows_usb.h 833 ULONG Size;

Completed in 698 milliseconds

<<1112131415161718