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

1 2 3 4

  /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_org/media/base/
media_log_event.h 42 LOAD,
media_log.cc 29 case MediaLogEvent::LOAD:
30 return "LOAD";
151 scoped_ptr<MediaLogEvent> event(CreateEvent(MediaLogEvent::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/chromium_org/third_party/openssl/openssl/crypto/chacha/
chacha_vec.c 80 #define LOAD(m) (vec)(*((vec*)(m)))
104 #define LOAD(m) (vec)_mm_loadu_si128((__m128i*)(m))
152 STORE(op + d + 0, LOAD(in + d + 0) ^ REVV_BE(v0)); \
153 STORE(op + d + 4, LOAD(in + d + 4) ^ REVV_BE(v1)); \
154 STORE(op + d + 8, LOAD(in + d + 8) ^ REVV_BE(v2)); \
155 STORE(op + d +12, LOAD(in + d +12) ^ REVV_BE(v3));
197 s0 = LOAD(chacha_const);
198 s1 = LOAD(&((vec*)kp)[0]);
199 s2 = LOAD(&((vec*)kp)[1]);
328 STORE(op + 0, LOAD(ip + 0) ^ REVV_BE(v0 + s0))
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/data/
UserPresetsManager.java 22 private static final int LOAD = 1;
44 case LOAD:
74 public void load() { method in class:UserPresetsManager
75 Message msg = mProcessingHandler.obtainMessage(LOAD);
  /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/R600/
AMDGPUISelLowering.cpp 56 // Lower floating point store/load to integer store/load to reduce the number
70 setOperationAction(ISD::LOAD, MVT::f32, Promote);
71 AddPromotedToType(ISD::LOAD, MVT::f32, MVT::i32);
73 setOperationAction(ISD::LOAD, MVT::v2f32, Promote);
74 AddPromotedToType(ISD::LOAD, MVT::v2f32, MVT::v2i32);
76 setOperationAction(ISD::LOAD, MVT::v4f32, Promote);
77 AddPromotedToType(ISD::LOAD, MVT::v4f32, MVT::v4i32);
79 setOperationAction(ISD::LOAD, MVT::f64, Promote);
80 AddPromotedToType(ISD::LOAD, MVT::f64, MVT::i64)
    [all...]
  /external/chromium_org/tools/page_cycler/webpagereplay/extension/
background.js 11 // Url to load before loading target page.
75 // Load a url in the default tab and record the time.
167 console.log("LOAD started: " + url_);
192 console.log("LOAD INCOMPLETE: " + url_);
194 console.log("LOAD complete: " + url_);
213 // Load page sets and prepare performance results.
264 console.log("LOAD url " + (loaderIndex_ + 1) + " of " +
277 console.log("LOAD retry, " + retryIndex_);
  /external/llvm/lib/Target/Mips/
MipsISelDAGToDAG.cpp 65 /// Used on Mips Load/Store instructions
118 case ISD::LOAD:
  /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...]
  /external/llvm/include/llvm/CodeGen/
ISDOpcodes.h 452 /// LOAD and STORE have token chains as their first operand, then the same
453 /// operands as an LLVM load/store instruction, then an offset node that
456 LOAD, STORE,
599 /// This corresponds to "load atomic" instruction.
641 /// MemIndexedMode enum - This enum defines the load / store indexed
644 /// UNINDEXED "Normal" load / store. The effective address is already
647 /// chain, an unindexed load produces one value (result of the
648 /// load); an unindexed store does not produce a value.
652 /// It considers the computation as being folded into the load /
653 /// store operation (i.e. the load / store does the addres
    [all...]
  /external/chromium_org/chrome/browser/resources/file_manager/foreground/js/
suggest_apps_dialog.js 124 // Failed to load the widget. Error message should be shown.
295 this.webviewClient_.load();
320 SuggestAppsDialog.Metrics.LOAD.SUCCEEDED);
329 * Called when the widget is failed to load.
334 SuggestAppsDialog.Metrics.recordLoad(SuggestAppsDialog.Metrics.LOAD.FAILURE);
423 SuggestAppsDialog.Metrics.LOAD.CANCELLED);
499 LOAD: Object.freeze({
506 * @param {SuggestAppsDialog.Metrics.LOAD} result Result of load.
510 metrics.recordEnum('SuggestApps.Load', result, 3)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
SIISelLowering.cpp 53 setOperationAction(ISD::LOAD, MVT::i32, Custom);
54 setOperationAction(ISD::LOAD, MVT::i64, Custom);
266 case ISD::LOAD: return LowerLOAD(Op, DAG);
  /external/mesa3d/src/gallium/drivers/radeon/
SIISelLowering.cpp 53 setOperationAction(ISD::LOAD, MVT::i32, Custom);
54 setOperationAction(ISD::LOAD, MVT::i64, Custom);
266 case ISD::LOAD: return LowerLOAD(Op, DAG);
  /external/llvm/lib/Target/MSP430/
MSP430ISelDAGToDAG.cpp 357 if (N1.getOpcode() == ISD::LOAD &&
414 case ISD::LOAD:

Completed in 1988 milliseconds

1 2 3 4