Home
last modified time | relevance | path

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

12345

/third_party/iptables/libiptc/
Dlinux_list.h30 #define prefetch(x) ((void)0) macro
339 for (pos = (head)->next, prefetch(pos->next); pos != (head); \
340 pos = pos->next, prefetch(pos->next))
361 for (pos = (head)->prev, prefetch(pos->prev); pos != (head); \
362 pos = pos->prev, prefetch(pos->prev))
382 prefetch(pos->member.next); \
385 prefetch(pos->member.next))
395 prefetch(pos->member.prev); \
398 prefetch(pos->member.prev))
419 prefetch(pos->member.next); \
[all …]
/third_party/boost/boost/context/detail/
Dprefetch.hpp36 void prefetch( void * addr) { in prefetch() function
43 void prefetch( void * addr) {
50 void prefetch( void * addr) {
63 prefetch( vp); in prefetch_range()
/third_party/openssl/crypto/sha/asm/
Dsha1-s390x.pl58 $ctx="%r2"; $prefetch="%r2";
79 lg $prefetch,$stdframe($sp) ### Xupdate(16) warm-up
88 xgr $X[0],$prefetch ### Xupdate($i)
89 lg $prefetch,`$stdframe+4*(($i+2)%16)`($sp)
91 xgr $X[0],$prefetch
/third_party/node/deps/npm/node_modules/pacote/
Dprefetch.js10 module.exports = prefetch
11 function prefetch (spec, opts) { function
Dindex.js7 prefetch: require('./prefetch'), property
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(() => {
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/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/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/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/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/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/mesa3d/src/gallium/drivers/freedreno/a6xx/
Dfd6_program.c492 const struct ir3_sampler_prefetch *prefetch = &fs->sampler_prefetch[i]; in setup_stateobj() local
494 A6XX_SP_FS_PREFETCH_CMD_SRC(prefetch->src) | in setup_stateobj()
495 A6XX_SP_FS_PREFETCH_CMD_SAMP_ID(prefetch->samp_id) | in setup_stateobj()
496 A6XX_SP_FS_PREFETCH_CMD_TEX_ID(prefetch->tex_id) | in setup_stateobj()
497 A6XX_SP_FS_PREFETCH_CMD_DST(prefetch->dst) | in setup_stateobj()
498 A6XX_SP_FS_PREFETCH_CMD_WRMASK(prefetch->wrmask) | in setup_stateobj()
499 COND(prefetch->half_precision, A6XX_SP_FS_PREFETCH_CMD_HALF) | in setup_stateobj()
500 A6XX_SP_FS_PREFETCH_CMD_CMD(prefetch->cmd)); in setup_stateobj()
/third_party/mesa3d/src/freedreno/ir3/
Dir3_print.c361 instr->prefetch.tex, instr->prefetch.samp, in print_instr()
362 instr->prefetch.input_offset); in print_instr()
/third_party/mesa3d/src/gallium/drivers/freedreno/
Dfreedreno_util.h340 __OUT_IB(struct fd_ringbuffer *ring, bool prefetch, in __OUT_IB() argument
358 OUT_PKT3(ring, prefetch ? CP_INDIRECT_BUFFER_PFE : CP_INDIRECT_BUFFER_PFD, in __OUT_IB()
/third_party/mesa3d/src/gallium/drivers/radeonsi/
Dsi_compute.c477 unsigned offset, bool *prefetch) in si_switch_compute_shader() argument
484 *prefetch = false; in si_switch_compute_shader()
564 *prefetch = true; in si_switch_compute_shader()
962 bool prefetch; in si_launch_grid() local
963 if (!si_switch_compute_shader(sctx, program, &program->shader, code_object, info->pc, &prefetch)) in si_launch_grid()
993 if (sctx->chip_class >= GFX7 && prefetch) in si_launch_grid()
/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()
/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/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/ffmpeg/libavcodec/x86/
Dvideodsp_init.c289 ctx->prefetch = ff_prefetch_3dnow; in ff_videodsp_init_x86()
293 ctx->prefetch = ff_prefetch_mmxext; in ff_videodsp_init_x86()

12345