HomeSort by relevance Sort by last modified time
    Searched defs:Load (Results 51 - 75 of 139) sorted by null

1 23 4 5 6

  /external/vboot_reference/cgpt/
cgpt_common.c 63 int Load(struct drive *drive, uint8_t **buf,
163 if (CGPT_OK != Load(drive, &drive->gpt.primary_header,
169 if (CGPT_OK != Load(drive, &drive->gpt.secondary_header,
179 if (CGPT_OK != Load(drive, &drive->gpt.primary_entries,
193 if (CGPT_OK != Load(drive, &drive->gpt.secondary_entries,
331 // We just load the data. Caller must validate it.
    [all...]
  /art/compiler/utils/mips/
assembler_mips.cc 154 int32_t next = buffer_.Load<int32_t>(position);
685 void MipsAssembler::Load(ManagedRegister mdest, FrameOffset src, size_t size) {
896 // Given a handle scope entry, load the associated reference.
    [all...]
  /external/clang/lib/CodeGen/
CGCall.cpp     [all...]
CGCleanup.cpp 327 llvm::LoadInst *Load =
330 llvm::SwitchInst::Create(Load, Br->getSuccessor(0), 4, Block);
483 // If there's an active flag, load it and skip the cleanup if it's
552 // The switch operand is a load from the cleanup-dest alloca.
558 // Destroy the load.
770 llvm::LoadInst *Load =
773 llvm::SwitchInst::Create(Load, Default, SwitchCapacity);
775 InstsToAppend.push_back(Load);
    [all...]
CGAtomic.cpp 198 /// \brief Emits atomic load.
232 /// \brief Emits atomic load as a libcall.
235 /// \brief Emits atomic load as LLVM instruction.
519 llvm::LoadInst *Load = CGF.Builder.CreateLoad(Ptr);
520 Load->setAtomic(Order);
521 Load->setAlignment(Size);
522 Load->setVolatile(E->isVolatile());
523 llvm::StoreInst *StoreDest = CGF.Builder.CreateStore(Load, Dest);
627 // Load value and pass it to the function directly.
    [all...]
  /external/llvm/lib/Target/Mips/
MipsISelLowering.h 197 // Load/Store Left/Right nodes.
274 // (add (load (wrapper $gp, %got(sym)), %lo(sym))
281 SDValue Load = DAG.getLoad(Ty, DL, DAG.getEntryNode(), GOT,
287 return DAG.getNode(ISD::ADD, DL, Ty, Load, Lo);
293 // (load (wrapper $gp, %got(sym)))
306 // (load (wrapper (add %hi(sym), $gp), %lo(sym)))
529 /// materialize the FP immediate as a load from a constant pool.
  /external/llvm/lib/Target/SystemZ/
SystemZISelDAGToDAG.cpp 32 // base+displacement+index for load and store operands
35 // base+displacement+index for load address operands
295 // Return true if Load and Store are loads and stores of the same size
304 bool canUseBlockOperation(StoreSDNode *Store, LoadSDNode *Load) const;
306 // N is a (store (load Y), X) pattern. Return true if it can use an MVC
310 // N is a (store (op (load A[0]), (load A[1])), X) pattern. Return true
    [all...]
  /external/pdfium/core/src/fpdfapi/fpdf_font/
fpdf_font_cid.cpp 85 pMap->Load(this, i, FALSE);
105 pMap->Load(this, charset, bPromptCJK);
690 void CPDF_CID2UnicodeMap::Load(CPDF_CMapManager* pMgr, int charset, FX_BOOL bPromptCJK)
    [all...]
  /external/pdfium/core/src/fpdfapi/fpdf_page/
fpdf_page.cpp 814 void CPDF_Page::Load(CPDF_Document* pDocument, CPDF_Dictionary* pPageDict, FX_BOOL bPageCache)
fpdf_page_func.cpp 751 m_pSubFunctions[i] = CPDF_Function::Load(pSub);
795 CPDF_Function* CPDF_Function::Load(CPDF_Object* pFuncObj)
  /external/pdfium/core/src/fpdfapi/fpdf_render/
fpdf_render_loadimage.cpp 63 if (pSource->Load(m_pDocument, m_pStream, (CPDF_DIBSource**)ppMask, pMatteColor, NULL, NULL, bStdCS, GroupFamily, bLoadMask)) {
179 FX_BOOL CPDF_DIBSource::Load(CPDF_Document* pDoc, const CPDF_Stream* pStream, CPDF_DIBSource** ppMask,
799 if (!pMaskSource->Load(m_pDocument, pMask, NULL, NULL, NULL, NULL, TRUE)) {
    [all...]
fpdf_render_text.cpp 331 if (!dibsrc.Load(pContext->m_pDocument, pInlines->m_pStream, NULL, NULL, NULL, NULL)) {
511 void Load(int nChars, FX_DWORD* pCharCodes, FX_FLOAT* pCharPos, CPDF_Font* pFont, FX_FLOAT font_size);
526 void CPDF_CharPosList::Load(int nChars, FX_DWORD* pCharCodes, FX_FLOAT* pCharPos, CPDF_Font* pFont,
587 CharPosList.Load(nChars, pCharCodes, pCharPos, pFont, font_size);
656 CharPosList.Load(nChars, pCharCodes, pCharPos, pFont, font_size);
715 CharPosList.Load(textobj->m_nChars, textobj->m_pCharCodes, textobj->m_pCharPos, pFont, font_size);
  /external/v8/src/compiler/
raw-machine-assembler.h 96 Node* Load(MachineType rep, Node* base) {
97 return Load(rep, base, Int32Constant(0));
99 Node* Load(MachineType rep, Node* base, Node* index) {
100 return NewNode(machine()->Load(rep), base, index);
  /external/v8/src/mips64/
macro-assembler-mips64.cc 33 void MacroAssembler::Load(Register dst,
383 // Load store buffer top.
427 // Load current lexical context from the stack frame.
435 // Load the native context of the current context.
548 // result - holds the result on exit if the load succeeded.
1059 // Do 64-bit load from unaligned address. Note this only handles
1107 // Normal load of an immediate value which does not need Relocation Info.
1135 // this code to load another value which may need all 4 instructions.
    [all...]
  /art/compiler/optimizing/
code_generator_arm64.cc 197 // The class this slow path will load.
201 // (Might be the load class or an initialization check).
581 Location CodeGeneratorARM64::GetStackLocation(HLoadLocal* load) const {
582 Primitive::Type type = load->GetType();
588 return Location::StackSlot(GetStackSlot(load->GetLocal()));
592 return Location::DoubleStackSlot(GetStackSlot(load->GetLocal()));
814 void CodeGeneratorARM64::Load(Primitive::Type type,
    [all...]
  /art/compiler/utils/mips64/
assembler_mips64.cc 801 uint32_t auipc = buffer_.Load<uint32_t>(position);
802 uint32_t jic = buffer_.Load<uint32_t>(position + 4); // actually, jic or daddiu
1002 UNIMPLEMENTED(FATAL) << "We only support Load() of size 4 and 8";
1012 UNIMPLEMENTED(FATAL) << "We only support Load() of size 4 and 8";
    [all...]
  /art/compiler/utils/x86/
assembler_x86.cc     [all...]
  /art/compiler/utils/x86_64/
assembler_x86_64.cc     [all...]
  /art/runtime/
elf_file.cc 763 // Even if we Load(), it doesn't bring in all the sections.
818 // otherwise it will be wrongly 0 if ::Load has not yet been called.
    [all...]
  /external/clang/include/clang/Analysis/Analyses/
ThreadSafetyTIL.h 1029 /// Load a value from memory.
1030 class Load : public SExpr {
1034 Load(SExpr *P) : SExpr(COP_Load), Ptr(P) {}
1035 Load(const Load &L, SExpr *P) : SExpr(L), Ptr(P) {}
1047 typename C::CType compare(const Load* E, C& Cmp) const {
    [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonISelDAGToDAG.cpp 334 // Generate an indirect load.
354 const SDValue Tos[] = { SDValue(Result_2, 0), // Load value.
589 } else if (MulOp0.getOpcode() == ISD::LOAD) {
615 } else if (MulOp1.getOpcode() == ISD::LOAD) {
788 // Checking for intrinsics circular load/store, and bitreverse load/store
802 SDValue Load = N->getOperand(3);
806 // We need to add the rerurn type for the load. This intrinsic has
807 // two return types, one for the load and one for the post-increment.
    [all...]
  /external/llvm/lib/Target/R600/
SIISelLowering.cpp 83 setOperationAction(ISD::LOAD, MVT::v4i32, Custom);
84 setOperationAction(ISD::LOAD, MVT::v8i32, Custom);
85 setOperationAction(ISD::LOAD, MVT::v16i32, Custom);
163 setOperationAction(ISD::LOAD, MVT::i1, Custom);
176 // We only support LOAD/STORE and vector manipulation ops for vectors
181 case ISD::LOAD:
222 setTargetDAGCombine(ISD::LOAD);
687 case ISD::LOAD: {
691 "Load should return a value and a chain");
    [all...]
  /external/llvm/lib/Target/X86/
X86ISelDAGToDAG.cpp 319 if (N.getOpcode() != ISD::LOAD)
322 // If N is a load, do additional profitability checks.
361 // a load.
376 /// load's chain operand and move load below the call's chain operand.
377 static void MoveBelowOrigChain(SelectionDAG *CurDAG, SDValue Load,
381 if (Chain.getNode() == Load.getNode())
382 Ops.push_back(Load.getOperand(0));
387 if (Chain.getOperand(i).getNode() == Load.getNode())
388 Ops.push_back(Load.getOperand(0))
    [all...]
  /external/llvm/lib/Transforms/Scalar/
ScalarReplAggregates.cpp 79 // Do not limit the scalar integer load size if no threshold is given.
119 /// intrinsics or load/store that only access the entire alloca at once.
143 /// ScalarLoadThreshold - The maximum size in bits of scalars to load when
368 // scalar load threshold.
568 // can handle it like a load or store of the scalar type.
635 // The load is a bit extract from NewAI shifted right by Offset bits.
653 // If the load we just inserted is now dead, then the inserted store
684 // If the load we just inserted is now dead, then the memset overwrote
694 // can handle it like a load or store of the scalar type.
700 // a noop copy-to-self, just delete it. Otherwise, emit a load and stor
    [all...]
  /external/opencv/cvaux/include/
cvvidsurv.hpp 515 virtual void Load(CvFileStorage* fs, CvFileNode* node)
669 * Release the current detector and load new detector from file
673 bool Load( const char* /*detector_file_name*/ = 0 ) { return false; }
    [all...]

Completed in 831 milliseconds

1 23 4 5 6