HomeSort by relevance Sort by last modified time
    Searched refs:Load (Results 201 - 225 of 1157) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/v8/src/crankshaft/arm64/
lithium-gap-resolver-arm64.cc 161 __ Load(SavedValueRegister(), cgen_->ToMemOperand(source));
165 __ Load(SavedFPValueRegister(), cgen_->ToMemOperand(source));
220 __ Load(cgen_->ToRegister(destination), source_operand);
279 __ Load(cgen_->ToDoubleRegister(destination), src);
  /external/webrtc/webrtc/base/
latebindingsymboltable.cc 78 bool LateBindingSymbolTable::Load() {
88 // We do not attempt to load again because repeated attempts are not
117 LOG(LS_WARNING) << "Can't load " << dll_path << ": "
  /external/webrtc/webrtc/examples/turnserver/
turnserver_main.cc 25 file_.Load();
  /external/webrtc/webrtc/modules/audio_device/linux/
latebindingsymboltable_linux.h 77 bool Load() {
82 // We do not attempt to load again because repeated attempts are not
  /frameworks/base/libs/androidfw/tests/
BenchmarkHelpers.cpp 31 state.SkipWithError(base::StringPrintf("Failed to load assets %s", path.c_str()).c_str());
59 std::unique_ptr<const ApkAssets> apk = ApkAssets::Load(path);
61 state.SkipWithError(base::StringPrintf("Failed to load assets %s", path.c_str()).c_str());
AttributeResolution_bench.cpp 40 ApkAssets::Load(GetTestDataPath() + "/styles/styles.apk");
42 state.SkipWithError("failed to load assets");
52 state.SkipWithError("failed to load layout");
83 std::unique_ptr<const ApkAssets> framework_apk = ApkAssets::Load(kFrameworkPath);
85 state.SkipWithError("failed to load framework assets");
90 ApkAssets::Load(GetTestDataPath() + "/basic/basic.apk");
92 state.SkipWithError("failed to load assets");
133 state.SkipWithError("failed to load layout");
Theme_test.cpp 37 system_assets_ = ApkAssets::Load(GetTestDataPath() + "/system/system.apk", true /*system*/);
40 style_assets_ = ApkAssets::Load(GetTestDataPath() + "/styles/styles.apk");
43 libclient_assets_ = ApkAssets::Load(GetTestDataPath() + "/libclient/libclient.apk");
46 lib_one_assets_ = ApkAssets::Load(GetTestDataPath() + "/lib_one/lib_one.apk");
49 lib_two_assets_ = ApkAssets::Load(GetTestDataPath() + "/lib_two/lib_two.apk");
  /frameworks/native/services/vr/performanced/
cpu_set.h 70 void Load(const std::string& cpuset_root);
  /prebuilts/go/darwin-x86/src/internal/testlog/
log.go 34 if logger.Load() != nil {
43 impl := logger.Load()
  /prebuilts/go/linux-x86/src/internal/testlog/
log.go 34 if logger.Load() != nil {
43 impl := logger.Load()
  /external/libavc/common/arm/
ih264_inter_pred_luma_vert_qpel_a9q.s 129 vld1.u32 {q0}, [r0], r2 @ Vector load from src[0_0]
130 vld1.u32 {q1}, [r0], r2 @ Vector load from src[1_0]
131 vld1.u32 {q2}, [r0], r2 @ Vector load from src[2_0]
132 vld1.u32 {q3}, [r0], r2 @ Vector load from src[3_0]
133 vld1.u32 {q4}, [r0], r2 @ Vector load from src[4_0]
135 vld1.u32 {q5}, [r0], r2 @ Vector load from src[5_0]
158 vld1.u32 {q10}, [r7], r2 @ Load for interpolation row 0
176 vld1.u32 {q7}, [r7], r2 @ Load for interpolation row 1
191 vld1.u32 {q8}, [r7], r2 @ Load for interpolation row 2
202 vld1.u32 {q9}, [r7], r2 @ Load for interpolation row
    [all...]
ih264_weighted_bi_pred_a9q.s 137 ldr r6, [sp, #48] @Load log_wd in r6
138 ldr r7, [sp, #52] @Load wt1 in r7
139 ldr r8, [sp, #56] @Load wt2 in r8
140 ldr r9, [sp, #60] @Load ofst1 in r9
144 ldr r4, [sp, #40] @Load src_strd2 in r4
145 ldr r5, [sp, #44] @Load dst_strd in r5
148 ldr r11, [sp, #68] @Load ht in r11
149 ldr r12, [sp, #72] @Load wd in r12
153 ldr r10, [sp, #64] @Load ofst2 in r10
169 vld1.32 d4[0], [r0], r3 @load row 1 in source
    [all...]
  /external/skia/src/core/
SkColor.cpp 147 auto c4 = Sk4f::Load(fVec);
161 return Sk4f_toS32(swizzle_rb(Sk4f::Load(this->vec())));
171 auto src = Sk4f::Load(this->pin().vec());
  /external/skqp/src/core/
SkColor.cpp 147 auto c4 = Sk4f::Load(fVec);
161 return Sk4f_toS32(swizzle_rb(Sk4f::Load(this->vec())));
171 auto src = Sk4f::Load(this->pin().vec());
  /external/skqp/src/gpu/ccpr/
GrCCCoverageProcessor.h 259 Sk2f P0 = Sk2f::Load(&p0) + trans;
260 Sk2f P1 = Sk2f::Load(&p1) + trans;
261 Sk2f P2 = Sk2f::Load(&p2) + trans;
  /external/swiftshader/third_party/LLVM/lib/Target/MBlaze/
MBlazeISelDAGToDAG.cpp 237 // Use load to get GOT target
239 SDValue Load = SDValue(CurDAG->getMachineNode(MBlaze::LW, dl,
241 Chain = Load.getValue(1);
244 Chain = CurDAG->getCopyToReg(Chain, dl, R20Reg, Load, InFlag);
  /prebuilts/go/darwin-x86/src/io/
pipe.go 23 func (a *atomicError) Load() error {
24 err, _ := a.v.Load().(struct{ error })
61 rerr := p.rerr.Load()
62 if werr := p.werr.Load(); rerr == nil && werr != nil {
100 werr := p.werr.Load()
101 if rerr := p.rerr.Load(); werr == nil && rerr != nil {
  /prebuilts/go/darwin-x86/src/runtime/
sigqueue.go 76 if w := atomic.Load(&sig.wanted[s/32]); w&bit == 0 {
96 switch atomic.Load(&sig.state) {
134 switch atomic.Load(&sig.state) {
171 for atomic.Load(&sig.delivering) != 0 {
178 for atomic.Load(&sig.state) != sigReceiving {
242 i := atomic.Load(&sig.ignored[s/32])
  /prebuilts/go/linux-x86/src/io/
pipe.go 23 func (a *atomicError) Load() error {
24 err, _ := a.v.Load().(struct{ error })
61 rerr := p.rerr.Load()
62 if werr := p.werr.Load(); rerr == nil && werr != nil {
100 werr := p.werr.Load()
101 if rerr := p.rerr.Load(); werr == nil && rerr != nil {
  /prebuilts/go/linux-x86/src/runtime/
sigqueue.go 76 if w := atomic.Load(&sig.wanted[s/32]); w&bit == 0 {
96 switch atomic.Load(&sig.state) {
134 switch atomic.Load(&sig.state) {
171 for atomic.Load(&sig.delivering) != 0 {
178 for atomic.Load(&sig.state) != sigReceiving {
242 i := atomic.Load(&sig.ignored[s/32])
  /system/update_engine/
hardware_chromeos.cc 243 store.Load(base::FilePath(root_prefix + kConfigFilePath));
245 if (store.Load(base::FilePath(root_prefix + kStatefulPartition +
249 store.Load(base::FilePath(root_prefix + kConfigFilePath));
  /external/v8/src/builtins/
builtins-internal.cc 68 // Load the {object}s elements.
190 // Load the current {index}.
196 // Load the parameter at the given {index}.
197 Node* value = assembler->Load(
245 Node* parent_frame = assembler.Load(
249 assembler.Load(MachineType::AnyTagged(), parent_frame,
285 Node* frame = assembler.Load(
289 assembler.Load(MachineType::AnyTagged(), frame,
  /prebuilts/go/darwin-x86/src/crypto/cipher/
example_test.go 18 // Load your secret key from a safe place and reuse it across multiple
47 // Load your secret key from a safe place and reuse it across multiple
76 // Load your secret key from a safe place and reuse it across multiple
119 // Load your secret key from a safe place and reuse it across multiple
158 // Load your secret key from a safe place and reuse it across multiple
187 // Load your secret key from a safe place and reuse it across multiple
217 // Load your secret key from a safe place and reuse it across multiple
256 // Load your secret key from a safe place and reuse it across multiple
295 // Load your secret key from a safe place and reuse it across multiple
336 // Load your secret key from a safe place and reuse it across multipl
    [all...]
  /prebuilts/go/linux-x86/src/crypto/cipher/
example_test.go 18 // Load your secret key from a safe place and reuse it across multiple
47 // Load your secret key from a safe place and reuse it across multiple
76 // Load your secret key from a safe place and reuse it across multiple
119 // Load your secret key from a safe place and reuse it across multiple
158 // Load your secret key from a safe place and reuse it across multiple
187 // Load your secret key from a safe place and reuse it across multiple
217 // Load your secret key from a safe place and reuse it across multiple
256 // Load your secret key from a safe place and reuse it across multiple
295 // Load your secret key from a safe place and reuse it across multiple
336 // Load your secret key from a safe place and reuse it across multipl
    [all...]
  /external/libopus/celt/arm/
celt_pitch_xcorr_arm_gnu.s 64 @ Load y[0...3]
76 @ - 10 cycles of load/store/byte permute instructions, and
82 @ Load x[0...7]
88 @ Load y[4...11]
109 @ Load x[0...3]
114 @ Load y[4...7]
127 @ Load x[0...1]
132 @ Load y[4...5]
142 @ Load next *x
149 @ Load last *
    [all...]

Completed in 419 milliseconds

1 2 3 4 5 6 7 891011>>