Home
last modified time | relevance | path

Searched refs:cache (Results 1 – 4 of 4) sorted by relevance

/libuv/
H A D.gitignore14 .cache
22 /autom4te.cache/
54 *.sln.cache
H A DChangeLog310 * build: add .cache clangd folder to .gitignore (Juan José Arboleda)
1810 * unix: cache address of dlsym("mkostemp") (Ben Noordhuis)
/libuv/.github/workflows/
H A DCI-docs.yml18 cache: 'pip' # caching pip dependencies
/libuv/src/unix/
H A Dfs.c474 _Atomic uintptr_t* cache, in uv__preadv_or_pwritev() argument
479 p = (void*) atomic_load_explicit(cache, memory_order_relaxed); in uv__preadv_or_pwritev()
487 atomic_store_explicit(cache, (uintptr_t) p, memory_order_relaxed); in uv__preadv_or_pwritev()
502 static _Atomic uintptr_t cache; in uv__preadv() local
503 return uv__preadv_or_pwritev(fd, bufs, nbufs, off, &cache, /*is_pread*/1); in uv__preadv()
511 static _Atomic uintptr_t cache; in uv__pwritev() local
512 return uv__preadv_or_pwritev(fd, bufs, nbufs, off, &cache, /*is_pread*/0); in uv__pwritev()

Completed in 20 milliseconds