Home
last modified time | relevance | path

Searched refs:prefetch (Results 1 – 25 of 116) sorted by relevance

12345

/third_party/openssl/crypto/sha/asm/
Dsha1-s390x.pl60 $ctx="%r2"; $prefetch="%r2";
81 lg $prefetch,$stdframe($sp) ### Xupdate(16) warm-up
90 xgr $X[0],$prefetch ### Xupdate($i)
91 lg $prefetch,`$stdframe+4*(($i+2)%16)`($sp)
93 xgr $X[0],$prefetch
/third_party/elfutils/tests/
Drun-debuginfod-fd-prefetch-caches.sh56 --fdcache-fds=$FDCACHE_FDS --fdcache-prefetch-fds=$PREFETCH_FDS -vvvvv -g 0 -t 0 \
57 -Z .tar.bz2=bzcat Z --fdcache-mbs=100 --fdcache-prefetch-mbs=100 \
58 --fdcache-mintmp=0 --fdcache-prefetch=$PREFETCH > vlog$PORT1 2>&1 &
Drun-debuginfod-webapi-concurrency.sh38 …tar.xz -Z .tar.bz2=bzcat -p $PORT1 -t0 -g0 -v --fdcache-fds=0 --fdcache-prefetch-fds=0 Z >> vlog$P…
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/
DX86Instr3DNow.td95 "prefetch\t$addr",
96 [(prefetch addr:$addr, imm, imm, (i32 1))]>, TB;
99 [(prefetch addr:$addr, (i32 1), (i32 PrefetchWLevel), (i32 1))]>,
103 [(prefetch addr:$addr, (i32 1), (i32 PrefetchWT1Level), (i32 1))]>,
/third_party/node/deps/npm/node_modules/pacote/
Dprefetch.js10 module.exports = prefetch
11 function prefetch (spec, opts) { function
DREADME.md24 * ~~[`prefetch`](#prefetch)~~ (deprecated)
189 #### <a name="prefetch"></a> `> pacote.prefetch(spec, [opts])`
199 pacote.prefetch('pacote@1.0.0', { cache: './my-cache' }).then(() => {
Dindex.js7 prefetch: require('./prefetch'), property
DCHANGELOG.md542 ### prefetch subsection in [7.0.0](https://github.com/npm/pacote/compare/v6.1.0...v7.0.0) (2017-11-15)
544 * deprecate pacote.prefetch ([e47e521](https://github.com/npm/pacote/commit/e47e521))
550 * pacote.prefetch is deprecated in favor of pacote.tarball
1187 * **prefetch:** pull in new cacache + fix prefetch hasContent call ([9f476b8](https://github.com/np…
1329 * **prefetch:** fall back to the _integrity in the manifest if none calculated ([083ac79](https://g…
1330 * **prefetch:** if there's no stream, just skip (for directory) ([714de91](https://github.com/npm/p…
1345 * **prefetch:** return cache-related info on prefetch ([623b7f3](https://github.com/npm/pacote/comm…
1388 * **prefetch:** hashAlgorithm is required for hasContent ([f03d51c](https://github.com/npm/pacote/c…
1405 * **prefetch:** added tarball prefetch support ([26c34ce](https://github.com/npm/pacote/commit/26c3…
/third_party/elfutils/debuginfod/
Ddebuginfod.cxx1288 deque<fdcache_entry> prefetch; // prefetched member in libarchive_fdcache
1300 for (auto j = prefetch.begin(); j < prefetch.end(); j++) in set_metrics()
1305 set_metric("fdcache_prefetch_count", prefetch.size()); in set_metrics()
1324 for (auto i = prefetch.begin(); i < prefetch.end(); i++) in intern()
1329 prefetch.erase(i); in intern()
1344 prefetch.push_front(n); in intern()
1383 for ( auto i = prefetch.begin(); fd == -1 && i < prefetch.end(); ++i) in lookup()
1388 prefetch.erase(i); in lookup()
1420 for (auto i = prefetch.begin(); i < prefetch.end(); i++) in probe()
1447 for (auto i = prefetch.begin(); i < prefetch.end(); i++) in clear()
[all …]
/third_party/mesa3d/src/gallium/drivers/lima/
Dlima_gpu.h183 #define VS_CMD_SHADER_INFO(prefetch, size) \ argument
184 VS_CMD(((prefetch) << 20) | ((((size) >> 4) - 1) << 10), 0x10000040)
/third_party/ffmpeg/libavcodec/arm/
Dvideodsp_init_armv5te.c31 ctx->prefetch = ff_prefetch_arm; in ff_videodsp_init_armv5te()
/third_party/ffmpeg/libavcodec/aarch64/
Dvideodsp_init.c31 ctx->prefetch = ff_prefetch_aarch64; in ff_videodsp_init_aarch64()
/third_party/ffmpeg/libavcodec/ppc/
Dvideodsp.c35 ctx->prefetch = prefetch_ppc; in ff_videodsp_init_ppc()
/third_party/ffmpeg/libavcodec/mips/
Dvideodsp_init.c50 ctx->prefetch = prefetch_mips; in ff_videodsp_init_mips()
/third_party/mesa3d/src/gallium/drivers/freedreno/a6xx/
Dfd6_program.c532 const struct ir3_sampler_prefetch *prefetch = &fs->sampler_prefetch[i]; in setup_stateobj() local
534 A6XX_SP_FS_PREFETCH_CMD_SRC(prefetch->src) | in setup_stateobj()
535 A6XX_SP_FS_PREFETCH_CMD_SAMP_ID(prefetch->samp_id) | in setup_stateobj()
536 A6XX_SP_FS_PREFETCH_CMD_TEX_ID(prefetch->tex_id) | in setup_stateobj()
537 A6XX_SP_FS_PREFETCH_CMD_DST(prefetch->dst) | in setup_stateobj()
538 A6XX_SP_FS_PREFETCH_CMD_WRMASK(prefetch->wrmask) | in setup_stateobj()
539 COND(prefetch->half_precision, A6XX_SP_FS_PREFETCH_CMD_HALF) | in setup_stateobj()
540 A6XX_SP_FS_PREFETCH_CMD_CMD(prefetch->cmd)); in setup_stateobj()
/third_party/ffmpeg/libavcodec/alpha/
Dasm.h88 #define prefetch(p) __builtin_prefetch((p), 0, 1) macro
103 #define prefetch(p) __asm__ volatile("ldl $31,%0" : : "m"(*(const char *) (p)) : "memory") macro
/third_party/ffmpeg/libavcodec/
Dvideodsp.c40 ctx->prefetch = just_return; in ff_videodsp_init()
Dvideodsp.h76 void (*prefetch)(uint8_t *buf, ptrdiff_t stride, int h); member
Dh264_mb_template.c60 …h->vdsp.prefetch(dest_y + (sl->mb_x & 3) * 4 * sl->linesize + (64 << PIXEL_SHIFT), sl->linesize… in FUNC()
61 …h->vdsp.prefetch(dest_cb + (sl->mb_x & 7) * sl->uvlinesize + (64 << PIXEL_SHIFT), dest_cr - de… in FUNC()
272 h->vdsp.prefetch(dest[p] + (sl->mb_x & 3) * 4 * sl->linesize + (64 << PIXEL_SHIFT), in FUNC()
/third_party/mesa3d/src/gallium/drivers/radeonsi/
Dsi_compute.c503 unsigned offset, bool *prefetch) in si_switch_compute_shader() argument
510 *prefetch = false; in si_switch_compute_shader()
595 *prefetch = true; in si_switch_compute_shader()
999 bool prefetch; in si_launch_grid() local
1000 if (!si_switch_compute_shader(sctx, program, &program->shader, code_object, info->pc, &prefetch)) in si_launch_grid()
1030 if (sctx->gfx_level >= GFX7 && prefetch) in si_launch_grid()
/third_party/mesa3d/src/gallium/drivers/freedreno/
Dfreedreno_util.h342 __OUT_IB(struct fd_ringbuffer *ring, bool prefetch, in __OUT_IB() argument
360 OUT_PKT3(ring, prefetch ? CP_INDIRECT_BUFFER_PFE : CP_INDIRECT_BUFFER_PFD, in __OUT_IB()
/third_party/mesa3d/src/freedreno/ir3/
Dir3_print.c406 instr->prefetch.tex, instr->prefetch.samp, in print_instr()
407 instr->prefetch.input_offset); in print_instr()
/third_party/gstreamer/gstplugins_good/gst/deinterlace/tvtime/
Dsse.h979 #define prefetch(mem, hint) \ macro
984 #define prefetcht0(mem) prefetch(mem, t0)
985 #define prefetcht1(mem) prefetch(mem, t1)
986 #define prefetcht2(mem) prefetch(mem, t2)
987 #define prefetchnta(mem) prefetch(mem, nta)
/third_party/flutter/flutter/packages/flutter_tools/lib/src/fuchsia/
Damber_ctl.dart75 /// Instructs the amber instance running on [device] to prefetch the package
93 /// Instructs the pkg_resolver instance running on [device] to prefetch the
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
DLoopDataPrefetch.cpp231 if (F->getIntrinsicID() == Intrinsic::prefetch) in runOnLoop()
317 M, Intrinsic::prefetch, PrefPtrValue->getType()); in runOnLoop()

12345