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

1 2 3

  /dalvik/vm/compiler/template/mips/
fbinop.S 17 LOAD(a0, a1) # a0<- vBB
18 LOAD(a1, a2) # a1<- vCC
funop.S 18 LOAD(a0, a1) # a0<- vBB
funopWider.S 15 LOAD(a0, a1) # a0<- vB
  /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();
Root.java 94 Operation.Type.LOAD);
  /external/chromium/chrome/common/extensions/
extension_file_util_unittest.cc 82 install_dir, Extension::LOAD, Extension::STRICT_ERROR_CHECKS, &error));
98 install_dir, Extension::LOAD, Extension::STRICT_ERROR_CHECKS, &error));
156 install_dir, Extension::LOAD, Extension::STRICT_ERROR_CHECKS, &error));
173 install_dir, Extension::LOAD, Extension::STRICT_ERROR_CHECKS, &error));
189 install_dir, Extension::LOAD, Extension::STRICT_ERROR_CHECKS, &error));
191 ASSERT_STREQ("Could not load file 'bad_encoding.js' for content script. "
extension_l10n_util_unittest.cc 404 ExtensionInfo info(NULL, "", FilePath(), Extension::LOAD);
412 ExtensionInfo info(&manifest, "", FilePath(), Extension::LOAD);
422 ExtensionInfo info(&manifest, "", FilePath(), Extension::LOAD);
433 ExtensionInfo info(&manifest, "", FilePath(), Extension::LOAD);
445 ExtensionInfo info(&manifest, "", FilePath(), Extension::LOAD);
456 ExtensionInfo info(&manifest, "", FilePath(), Extension::LOAD);
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...]
  /external/compiler-rt/lib/asan/scripts/
symbolize.py 41 if ('LOAD' in line) and (' E ' in line):
42 match = re.match(r'\s*LOAD\s+0x[01-9a-zA-Z]+\s+(0x[01-9a-zA-Z]+)', line, re.UNICODE)
  /external/elfutils/libebl/
eblsegmenttypename.c 75 PTYPE (LOAD),
  /external/llvm/lib/Target/Mips/
MipsISelDAGToDAG.cpp 65 /// Used on Mips Load/Store instructions
118 case ISD::LOAD:
MipsSEISelLowering.cpp 45 setOperationAction(ISD::LOAD, VecTys[i], Legal);
65 setOperationAction(ISD::LOAD, MVT::i32, Custom);
Mips16ISelDAGToDAG.cpp 123 case ISD::LOAD: {
166 // on PIC code Load GA
197 // When loading from constant pools, load the lower address part in
216 // If an indexed floating point load/store can be emitted, return false.
  /external/chromium/chrome/browser/extensions/
extension_ui_unittest.cc 148 // Test that using Extension::LOAD for the extension location triggers the
164 extension_path, pages, Extension::LOAD));
180 // allow_reload. Contrast to Extension::LOAD, which has somewhat different
225 extension_path, pages, Extension::LOAD));
extension_service.cc 117 if (info.extension_location == Extension::LOAD)
160 // |install_directory| is a path where to look for extensions to load.
167 // TODO(erikkay): It might be useful to be able to load a packed extension
228 int flags = Extension::ShouldAlwaysAllowFileAccess(Extension::LOAD) ?
230 if (Extension::ShouldDoStrictErrorChecking(Extension::LOAD))
235 Extension::LOAD,
540 // Hack: we need to ensure the ResourceDispatcherHost is ready before we load
692 if (Extension::LOAD != location) {
861 // Load any component extensions.
864 // Load the previously installed extensions
    [all...]
extensions_ui.cc 70 if (extension->location() == Extension::LOAD)
234 web_ui_->RegisterMessageCallback("load",
402 // Flipping the incognito bit will generate unload/load notifications for the
584 if (operation == "load") {
692 if (extension->location() == Extension::LOAD)
697 extension->location() == Extension::LOAD);
708 extension->location() == Extension::LOAD);
711 // Determine the sort order: Extensions loaded through --load-extensions show
713 if (extension->location() == Extension::LOAD)
    [all...]
extension_prefs.cc 190 if (location != Extension::LOAD)
288 location_value == Extension::LOAD) {
332 location_value == Extension::LOAD) {
881 // We store prefs about LOAD extensions, but don't cache their manifest
883 if (extension->location() != Extension::LOAD) {
916 // If the extension doesn't have a pref, it's a --load-extension.
    [all...]
  /external/llvm/include/llvm/CodeGen/
ISDOpcodes.h 464 /// LOAD and STORE have token chains as their first operand, then the same
465 /// operands as an LLVM load/store instruction, then an offset node that
468 LOAD, STORE,
605 /// OUTCHAIN = MEMBARRIER(INCHAIN, load-load, load-store, store-load,
619 /// This corresponds to "load atomic" instruction.
661 /// MemIndexedMode enum - This enum defines the load / store indexed
664 /// UNINDEXED "Normal" load / store. The effective address is alread
    [all...]
  /external/llvm/lib/Target/R600/
AMDGPUISelLowering.cpp 49 // Lower floating point store/load to integer store/load to reduce the number
57 setOperationAction(ISD::LOAD, MVT::f32, Promote);
58 AddPromotedToType(ISD::LOAD, MVT::f32, MVT::i32);
60 setOperationAction(ISD::LOAD, MVT::v4f32, Promote);
61 AddPromotedToType(ISD::LOAD, MVT::v4f32, MVT::v4i32);
R600ISelLowering.cpp 76 setOperationAction(ISD::LOAD, MVT::i32, Custom);
77 setOperationAction(ISD::LOAD, MVT::v2i32, Custom);
78 setOperationAction(ISD::LOAD, MVT::v4i32, Custom);
88 setOperationAction(ISD::LOAD, MVT::i32, Custom);
89 setOperationAction(ISD::LOAD, MVT::v4i32, Custom);
318 case ISD::LOAD: return LowerLOAD(Op, DAG);
450 case ISD::LOAD: {
757 "vector width in load");
852 // non constant ptr cant be folded, keeps it as a v4f32 load
    [all...]
  /external/llvm/lib/Target/MSP430/
MSP430ISelDAGToDAG.cpp 356 if (N1.getOpcode() == ISD::LOAD &&
413 case ISD::LOAD:
  /dalvik/vm/compiler/template/out/
CompilerTemplateAsm-mips.S 192 #define LOAD(rd, rbase) lw rd, 0(rbase)
551 * For polymorphic callsites - setup the Dalvik frame and load Dalvik PC
    [all...]
  /external/qemu/distrib/zlib-1.2.3/
infback.c 118 /* Load returned state from inflate_fast() */
119 #define LOAD() \
471 LOAD();
  /external/v8/src/
ic.h 328 MUST_USE_RESULT MaybeObject* Load(State state,
376 LOAD,
410 ASSERT(stub_kind != LOAD);
473 MUST_USE_RESULT MaybeObject* Load(State state,
  /external/zlib/src/
infback.c 127 /* Load returned state from inflate_fast() */
128 #define LOAD() \
488 LOAD();

Completed in 770 milliseconds

1 2 3