| /freebsd/contrib/dialog/ |
| H A D | inputstr.c | 61 } CACHE; typedef 66 static CACHE *cache_list; 105 const CACHE *p = *(CACHE * const *) nodep; 128 const CACHE *p = (const CACHE *) a; in compare_cache() 129 const CACHE *q = (const CACHE *) b; in compare_cache() 137 static CACHE * 140 CACHE *p; in find_cache() 144 CACHE find; in find_cache() 151 p = *(CACHE **) pp; in find_cache() 165 static CACHE * [all …]
|
| /freebsd/contrib/libyaml/src/ |
| H A D | scanner.c | 486 #define CACHE(parser,length) \ macro 865 if (!CACHE(parser, 1)) in yaml_parser_fetch_next_token() 893 if (!CACHE(parser, 4)) in yaml_parser_fetch_next_token() 1928 if (!CACHE(parser, 1)) return 0; in yaml_parser_scan_to_next_token() 1943 if (!CACHE(parser, 1)) return 0; in yaml_parser_scan_to_next_token() 1949 if (!CACHE(parser, 1)) return 0; in yaml_parser_scan_to_next_token() 1957 if (!CACHE(parser, 1)) return 0; in yaml_parser_scan_to_next_token() 1965 if (!CACHE(parser, 2)) return 0; in yaml_parser_scan_to_next_token() 2061 if (!CACHE(parser, 1)) goto error; in yaml_parser_scan_directive() 2065 if (!CACHE(parser, 1)) goto error; in yaml_parser_scan_directive() [all …]
|
| /freebsd/crypto/krb5/src/lib/crypto/builtin/enc_provider/ |
| H A D | aes.c | 44 #define CACHE(X) ((struct aes_key_info_cache *)((X)->cache)) macro 82 return CACHE(key)->aesni; in aesni_supported() 88 struct aes_key_info_cache *cache = CACHE(key); in aesni_expand_enc_key() 100 struct aes_key_info_cache *cache = CACHE(key); in aesni_expand_dec_key() 112 struct aes_key_info_cache *cache = CACHE(key); in aesni_enc() 129 struct aes_key_info_cache *cache = CACHE(key); in aesni_dec() 172 CACHE(key)->enc_ctx.inf.l = CACHE(key)->dec_ctx.inf.l = 0; in init_key_cache() 173 CACHE(key)->aesni = aesni_supported_by_cpu(); in init_key_cache() 180 if (CACHE(key)->enc_ctx.inf.l != 0) in expand_enc_key() 185 &CACHE(key)->enc_ctx) != EXIT_SUCCESS) in expand_enc_key() [all …]
|
| H A D | camellia.c | 41 #define CACHE(X) ((struct camellia_key_info_cache *)((X)->cache)) macro 61 CACHE(key)->enc_ctx.keybitlen = CACHE(key)->dec_ctx.keybitlen = 0; in init_key_cache() 68 if (CACHE(key)->enc_ctx.keybitlen) in expand_enc_key() 71 &CACHE(key)->enc_ctx) != camellia_good) in expand_enc_key() 78 if (CACHE(key)->dec_ctx.keybitlen) in expand_dec_key() 81 &CACHE(key)->dec_ctx) != camellia_good) in expand_dec_key() 91 if (camellia_enc_blk(data, data, &CACHE(key)->enc_ctx) != in cbc_enc() 108 if (camellia_dec_blk(data, data, &CACHE(key)->dec_ctx) != in cbc_dec()
|
| /freebsd/tools/test/stress2/misc/ |
| H A D | nullfs11.sh | 36 CACHE=nullfs11-cache.log 41 rm -f $CACHE $NOCACHE 85 test "-o cache" > $CACHE 87 ministat -s -w 60 $NOCACHE $CACHE 88 rm -f /tmp/fstool $CACHE $NOCACHE
|
| /freebsd/tests/sys/cddl/zfs/tests/cli_root/zpool_import/ |
| H A D | zpool_import_missing_005_pos.ksh | 73 typeset CACHE=${TMPDIR}/cache 88 $RM -f $CACHE 96 log_must $TRUNCATE -s 64m $CACHE 100 log_must $MDCONFIG -t vnode -a -f $CACHE -u $CACHE_U 112 log_must $MDCONFIG -t vnode -a -f $CACHE -u $CACHE_ALTU
|
| /freebsd/usr.sbin/pmc/ |
| H A D | cmd_pmc_stat.c | 93 #define CACHE 4 macro 294 fprintf(pmc_args.pa_printfile, "%16jd %s%s", (uintmax_t)cvals[CACHE], stat_mode_names[CACHE], in pmc_stat_print_stat() 295 stat_mode_names[CACHE] != pmc_stat_mode_names[CACHE] ? "\n" : ""); in pmc_stat_print_stat() 296 if (stat_mode_names[CACHE] == pmc_stat_mode_names[CACHE]) in pmc_stat_print_stat() 298 ((double)cvals[CACHE] / cvals[INST])); in pmc_stat_print_stat() 303 100 * ((double)cvals[CACHE_MISS] / cvals[CACHE])); in pmc_stat_print_stat()
|
| /freebsd/sys/contrib/libsodium/contrib/ |
| H A D | Findsodium.cmake | 39 unset(sodium_LIBRARY CACHE) 40 unset(sodium_LIBRARY_DEBUG CACHE) 41 unset(sodium_LIBRARY_RELEASE CACHE) 42 unset(sodium_DLL_DEBUG CACHE) 43 unset(sodium_DLL_RELEASE CACHE) 44 …set(sodium_USE_STATIC_LIBS_LAST ${sodium_USE_STATIC_LIBS} CACHE INTERNAL "internal change tracking… 94 set(sodium_DIR "$ENV{sodium_DIR}" CACHE FILEPATH "sodium install directory")
|
| /freebsd/contrib/libpcap/cmake/Modules/ |
| H A D | FindFseeko.cmake | 75 set(FSEEKO_DEFINITIONS ${_fseeko_cppflags} CACHE STRING "Extra definitions for fseeko support") 76 set(FSEEKO_COMPILE_OPTIONS "" CACHE STRING "Extra compiler options for fseeko support") 77 set(FSEEKO_LIBRARIES "" CACHE STRING "Extra definitions for fseeko support") 78 set(FSEEKO_FOUND ${FSEEKO_FOUND} CACHE INTERNAL "Found fseeko")
|
| H A D | FindLFS.cmake | 143 set(LFS_DEFINITIONS ${_lfs_cppflags} CACHE STRING "Extra definitions for large file support") 144 set(LFS_COMPILE_OPTIONS ${_lfs_cflags} CACHE STRING "Extra definitions for large file support") 145 …set(LFS_LIBRARIES ${_lfs_libs} ${_lfs_ldflags} CACHE STRING "Extra definitions for large file supp… 146 set(LFS_FOUND ${LFS_FOUND} CACHE INTERNAL "Found LFS")
|
| /freebsd/contrib/ntp/sntp/libevent/cmake/ |
| H A D | CheckConstExists.cmake | 18 set(${VARIABLE} 1 CACHE INTERNAL "Have const ${CONST}") 21 set(${VARIABLE} 0 CACHE INTERNAL "Have const ${CONST}")
|
| H A D | CheckFileOffsetBits.cmake | 35 SET(_FILE_OFFSET_BITS 64 CACHE INTERNAL "_FILE_OFFSET_BITS macro needed for large files") 38 SET(_FILE_OFFSET_BITS "" CACHE INTERNAL "_FILE_OFFSET_BITS macro needed for large files")
|
| H A D | CheckPrototypeDefinition.cmake | 69 set(${_VARIABLE} 1 CACHE INTERNAL "Have correct prototype for ${_FUNCTION}") 76 set(${_VARIABLE} 0 CACHE INTERNAL "Have correct prototype for ${_FUNCTION}")
|
| H A D | LibeventConfig.cmake.in | 116 unset(_event_h CACHE) 130 unset(_event_lib CACHE)
|
| /freebsd/contrib/libevent/cmake/ |
| H A D | CheckConstExists.cmake | 18 set(${VARIABLE} 1 CACHE INTERNAL "Have const ${CONST}") 21 set(${VARIABLE} 0 CACHE INTERNAL "Have const ${CONST}")
|
| H A D | CheckFileOffsetBits.cmake | 35 SET(_FILE_OFFSET_BITS 64 CACHE INTERNAL "_FILE_OFFSET_BITS macro needed for large files") 38 SET(_FILE_OFFSET_BITS "" CACHE INTERNAL "_FILE_OFFSET_BITS macro needed for large files")
|
| H A D | CheckPrototypeDefinition.cmake | 69 set(${_VARIABLE} 1 CACHE INTERNAL "Have correct prototype for ${_FUNCTION}") 76 set(${_VARIABLE} 0 CACHE INTERNAL "Have correct prototype for ${_FUNCTION}")
|
| H A D | LibeventConfig.cmake.in | 116 unset(_event_h CACHE) 130 unset(_event_lib CACHE)
|
| /freebsd/tools/boot/ |
| H A D | full-test.sh | 26 CACHE=${STAND_ROOT}/cache 86 mkdir -p ${CACHE} ${TREES} ${IMAGES} ${BIOS} 114 mkdir -p ${CACHE} 115 [ -r ${CACHE}/${file} ] && echo "Using cached ${file}" && return 116 cd ${CACHE} 162 …tar -C ${dir} -xf ${CACHE}/$file sbin/fastboot sbin/reboot sbin/halt sbin/init bin/sh sbin/sysctl \ 192 tar -C ${dir} -xf ${CACHE}/$file \ 290 cp ${CACHE}/linux/linux${bin}.efi ${dir} 291 cp ${CACHE}/linux/shell${bin}.efi ${dir}/efi/boot/boot${bin}.efi 342 linux="${CACHE}/linux/vmlinux-${m}*" [all …]
|
| /freebsd/contrib/libder/ |
| H A D | CMakeLists.txt | 20 CACHE BOOL "Build the libFuzzer fuzzers (needs llvm)") 23 CACHE BOOL "Build the libFuzzer fuzzers (needs llvm)")
|
| /freebsd/contrib/libcbor/ |
| H A D | CMakeLists.txt | 40 CACHE STRING "Factor for buffer growth & shrinking") 43 CACHE STRING "maximum size for decoding context stack") 101 set(CMAKE_C_STANDARD 23 CACHE STRING "C language standard") 111 set(CMAKE_C_STANDARD 99 CACHE STRING "C language standard")
|
| /freebsd/crypto/openssh/regress/ |
| H A D | test-exec.sh | 290 CACHE="${TEST_REGRESS_CACHE_DIR}/${TEST}.cache" 297 if [ "$bin" -nt "$CACHE" ]; then 298 rm -f "$CACHE" 301 if [ -f "$CACHE" ]; then 302 echo ok cached $CACHE
|
| /freebsd/contrib/googletest/googletest/ |
| H A D | CMakeLists.txt | 87 set(cmake_package_name GTest CACHE INTERNAL "") 92 set(targets_export_name ${cmake_package_name}Targets CACHE INTERNAL "") 93 set(generated_dir "${CMAKE_CURRENT_BINARY_DIR}/generated" CACHE INTERNAL "")
|
| /freebsd/contrib/libfido2/fuzz/ |
| H A D | CMakeLists.txt | 17 set(FUZZ_LINKER_LANGUAGE "C" CACHE STRING "Linker language for fuzz harnesses")
|
| /freebsd/contrib/libyaml/ |
| H A D | CMakeLists.txt | 11 set(YAML_STATIC_LIB_NAME "yaml" CACHE STRING "Base name of static library output")
|