Home
last modified time | relevance | path

Searched refs:cache (Results 1 – 25 of 1266) sorted by path

12345678910>>...51

/freebsd/
H A D.gitignore28 .cache
30 .ccls-cache
H A DUPDATING643 The ZFS cache file has moved from /boot to /etc to match the OpenZFS
/freebsd/bin/pax/
H A DMakefile6 SRCS= ar_io.c ar_subs.c buf_subs.c cache.c cpio.c file_subs.c ftree.c \
/freebsd/cddl/compat/opensolaris/lib/libumem/
H A Dumem.c109 if(cache == NULL) in umem_cache_create()
112 cache->constructor = constructor; in umem_cache_create()
113 cache->destructor = destructor; in umem_cache_create()
115 cache->bufsize = bufsize; in umem_cache_create()
117 return cache; in umem_cache_create()
125 void *buf = malloc(cache->bufsize); in umem_cache_alloc()
135 if(cache->constructor != NULL) { in umem_cache_alloc()
136 if(cache->constructor(buf, cache->callback_data, flags) != 0) { in umem_cache_alloc()
155 if(cache->destructor != NULL) in umem_cache_free()
156 cache->destructor(buffer, cache->callback_data); in umem_cache_free()
[all …]
/freebsd/contrib/atf/
H A D.gitignore15 autom4te.cache
/freebsd/contrib/bearssl/
H A DDoxyfile394 # The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This
395 # cache is used to resolve symbols given their name and scope. Since this can be
397 # code, doxygen keeps a cache of pre-resolved symbols. If the cache is too small
398 # doxygen will become slower. If the cache is too large, memory is wasted. The
399 # cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range
400 # is 0..9, the default is 0, corresponding to a cache size of 2^16=65536
401 # symbols. At the end of a run doxygen will report the cache usage and suggest
402 # the optimal cache size from a speed point of view.
/freebsd/contrib/bearssl/src/ssl/
H A Dssl_hs_server.t0949 \ TODO: if we have no session cache at all, we might send here
/freebsd/contrib/bearssl/tools/
H A Dserver.c653 unsigned char *iobuf, *cache; in do_server() local
676 cache = NULL; in do_server()
1009 cache = xmalloc(cache_len); in do_server()
1105 br_ssl_session_cache_lru_init(&lru, cache, cache_len); in do_server()
1215 xfree(cache); in do_server()
H A Dtwrch.c268 unsigned char *iobuf, *cache; in do_twrch() local
293 cache = NULL; in do_twrch()
665 cache = xmalloc(cache_len); in do_twrch()
788 if (is_server && cache != NULL) { in do_twrch()
789 br_ssl_session_cache_lru_init(&lru, cache, cache_len); in do_twrch()
1004 if (is_server && cache != NULL) { in do_twrch()
1063 xfree(cache); in do_twrch()
/freebsd/contrib/blocklist/diff/
H A Dnamed.diff152 * We were allowed by the "allow-query-cache" ACL.
/freebsd/contrib/bmake/
H A DChangeLog1445 o dir.c: use fixed format for debug output of the directory cache
1476 o dir.c: fix memory leak for lstat cache in -DCLEANUP mode
1550 main.c: switch cache for realpath from GNode to HashTable
2565 o main.c: purge relative paths from realpath cache when .OBJDIR
2665 o dir.c: extend mtimes cache to others via cached_stat()
3304 o Don't use the [dir] cache when building nodes that might have
3328 o improved dir cache behavior
H A Dconfigure830 -cache-file | --cache-file | --cache-fil | --cache-fi \
831 | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c)
833 -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \
834 | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*)
837 --config-cache | -C)
838 cache_file=config.cache ;;
1311 --cache-file=FILE cache test results in FILE [disabled]
1312 -C, --config-cache alias for \`--cache-file=config.cache'
2234 printf "%s\n" "$as_me: loading cache $cache_file" >&6;}
2241 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5
[all …]
/freebsd/contrib/bmake/mk/
H A DChangeLog477 forked when generating dirdeps.cache
636 * dirdeps.mk: when generating dirdeps.cache
702 dirdeps.cache so if RELDIR is not "." use dirdeps.mk
733 * dirdeps-cache-update.mk: allow
750 * dirdeps-cache-update.mk: building parallel cache update
775 for use by dirdeps-cache-update.mk
800 to regenerate the dirdeps.cache it is a copy of.
824 * dirdeps.mk: further optimize dirdeps.cache
830 * dirdeps.mk: optimize content of dirdeps.cache
1425 * meta.autodep.mk: ignore dirdeps.cache*
[all …]
H A DFILES74 dirdeps-cache-update.mk
H A Ddirdeps-cache-update.mk84 .if ${.MAKE.LEVEL} == 0 && !make(cache-update)
99 … d in ${STATIC_DIRDEPS_CACHE:H}/cache-update ${STATIC_DIRDEPS_CACHE:H:H}/cache-update ${STATIC_DIR…
106 DYNAMIC_DIRDEPS_CACHE := ${OBJTOP}/dirdeps.cache.${STATIC_DIRDEPS_CACHE:H:T}-update
120 all: cache-build
121 cache-build: .META
123 ${.MAKE} -C ${SRCTOP} -f ${RELDIR}/Makefile cache-update \
128 .elif ${.MAKE.LEVEL} == 0 && make(cache-update) && !target(cache-update)
142 cache-update: ${DIRDEPS_CACHE}
162 all: cache-update
165 cache-built:
[all …]
H A Ddirdeps-targets.mk152 .for c in ${DIRDEPS.dirs:S,$,/Makefile.dirdeps.cache,}
H A Ddirdeps.mk369 DIRDEPS_CACHE ?= ${_OBJDIR:tA}/dirdeps.cache${_TARGETS:U${.TARGETS}:Nall:O:u:ts-:S,/,_,g:S,^,.,:N.}
H A Dmeta.autodep.mk125 META_FILE_FILTER += Ndirdeps.cache*
H A Dmk-files.txt549 share/mk/dirdeps-cache-update.mk
/freebsd/contrib/byacc/
H A DCHANGES2546 make cache-size clearer (prompted by discussion with Pedro Giffuni,
H A Daclocal.m4315 dnl Check if we're accidentally using a cache from a different machine.
316 dnl Derive the system name, as a check for reusing the autoconf cache.
344 AC_MSG_ERROR("Please remove config.cache and try again.")
H A Dconfigure221 -cache-file | --cache-file | --cache-fil | --cache-fi \
222 | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c)
224 -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \
225 | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*)
228 --config-cache | -C)
229 cache_file=config.cache ;;
640 --cache-file=FILE cache test results in FILE [disabled]
641 -C, --config-cache alias for \`--cache-file=config.cache'
7404 # scripts and configure runs, see configure's option --config-cache.
H A Dmakefile.in138 - rm -f config.log config.cache config.status config.h makefile man2html.tmp
H A Dreader.c38 static char *cache; variable
118 cache = TREALLOC(char, cache, cache_size); in cachec()
119 NO_SPACE(cache); in cachec()
121 cache[cinc] = (char)c; in cachec()
1385 s[i] = cache[i]; in get_literal()
1444 bp = lookup(cache); in get_literal()
1484 if (is_reserved(cache)) in get_name()
1485 used_reserved(cache); in get_name()
1816 NO_SPACE(cache); in read_declarations()
2512 assert(cache); in insert_empty_rule()
[all …]
/freebsd/contrib/cortex-strings/
H A D.gitignore11 cache.txt

12345678910>>...51