HomeSort by relevance Sort by last modified time
    Searched defs:LOAD (Results 1 - 10 of 10) sorted by null

  /external/llvm/lib/CodeGen/
SlotIndexes.cpp 79 SlotIndex blockStartIndex(back(), SlotIndex::LOAD);
91 mi2iMap.insert(std::make_pair(mi, SlotIndex(back(), SlotIndex::LOAD)));
100 MBBRanges[mbb->getNumber()].second = SlotIndex(back(), SlotIndex::LOAD);
  /frameworks/base/tools/preload/
Operation.java 22 * An operation with a duration. Could represent a class load or initialization.
32 LOAD, INIT
99 case LOAD: return loadedClass.medianLoadTimeMicros();
  /external/qemu/distrib/zlib-1.2.3/
infback.c 118 /* Load returned state from inflate_fast() */
119 #define LOAD() \
471 LOAD();
inflate.c 402 /* Load registers with state in inflate() for speed */
403 #define LOAD() \
500 input left to load n bits into the accumulator, or it continues. BITS(n)
583 LOAD();
    [all...]
  /external/zlib/
infback.c 118 /* Load returned state from inflate_fast() */
119 #define LOAD() \
480 LOAD();
inflate.c 437 /* Load registers with state in inflate() for speed */
438 #define LOAD() \
535 input left to load n bits into the accumulator, or it continues. BITS(n)
618 LOAD();
    [all...]
  /external/llvm/lib/Target/PowerPC/
PPCISelLowering.h 68 /// This is basically a hard coded load instruction which additionally
72 /// Like a regular LOAD but additionally taking/producing a flag.
73 LOAD,
75 /// LOAD into r2 (also taking/producing a flag). Like TOC_RESTORE, this is
76 /// a hard coded load instruction.
160 /// LARX = This corresponds to PPC l{w|d}arx instrcution: load and
185 /// byte-swapping load instruction. It loads "Type" bits, byte swaps it,
253 /// can be legally represented as pre-indexed load / store address.
336 /// by AM is legal for this target, for a load/store of the specified type.
340 /// as the offset of the target addressing mode for load / store of th
    [all...]
  /external/llvm/include/llvm/CodeGen/
SlotIndexes.h 86 enum Slot { LOAD, USE, DEF, STORE, NUM };
194 /// isLoad - Return true if this is a LOAD slot.
196 return getSlot() == LOAD;
215 /// is the one associated with the LOAD slot for the instruction pointed to
222 /// index is the one associated with the LOAD slot for the instruction
228 /// Returns the index of the LOAD slot for the instruction pointed to by
231 return SlotIndex(&entry(), SlotIndex::LOAD);
261 return SlotIndex(entry().getNext(), SlotIndex::LOAD);
274 /// index is a LOAD, the last slot for the previous instruction.
280 if (s == SlotIndex::LOAD) {
    [all...]
ISDOpcodes.h 454 // LOAD and STORE have token chains as their first operand, then the same
455 // operands as an LLVM load/store instruction, then an offset node that
458 LOAD, STORE,
592 // OUTCHAIN = MEMBARRIER(INCHAIN, load-load, load-store, store-load,
606 // This corresponds to "load atomic" instruction.
644 /// MemIndexedMode enum - This enum defines the load / store indexed
647 /// UNINDEXED "Normal" load / store. The effective address is alread
    [all...]
  /external/chromium/chrome/common/extensions/
extension.h 53 LOAD, // --load-extension.
106 bool is_public; // False if only this extension can load this plugin.
378 return location == Extension::LOAD ||
385 return location == Extension::LOAD;
438 // file thread. To easily load extension images on the UI thread, see
446 // file thread. To easily load extension images on the UI thread, see
518 // the browser might load (like themes and page action icons).
701 // Helpers to load various chunks of the manifest.
715 // Helper method to load an ExtensionAction from the page_action o
    [all...]

Completed in 1149 milliseconds