HomeSort by: relevance | last modified time | path
    Searched defs:cache_size (Results 1 - 25 of 26) sorted by relevancy

1 2

  /src/sys/arch/sh3/sh3/
cache_sh3.c 62 size_t cache_size; local
74 cache_size = 8 * 1024;
77 cache_size = 8 * 1024;
82 cache_size = 16 * 1024;
102 sh_cache_size_unified = cache_size / 2;
105 sh_cache_size_unified = cache_size;
  /src/sys/arch/sun3/sun3/
locore2.c 75 int cache_size; variable
229 * XXX: Move cache_size stuff to cache.c.
278 cache_size = 0x10000; /* 64K */
  /src/external/bsd/libarchive/dist/libarchive/
archive_write_disk_set_standard_lookup.c 58 static const size_t cache_size = 127; variable
86 struct bucket *ucache = calloc(cache_size, sizeof(struct bucket));
87 struct bucket *gcache = calloc(cache_size, sizeof(struct bucket));
111 b = &gcache[h % cache_size ];
180 b = &ucache[h % cache_size ];
242 for (i = 0; i < cache_size; i++)
  /src/crypto/external/bsd/heimdal/dist/lib/hdb/
db3.c 334 int cache_size = (myflags & DB_RDONLY) ? RD_CACHE_SZ : WR_CACHE_SZ; local
356 d->set_cachesize(d, 0, cache_size, 0);
  /src/external/public-domain/xz/dist/src/liblzma/rangecoder/
range_encoder.h 29 uint64_t cache_size; member in struct:__anon24639
58 rc->cache_size = 1;
137 } while (--rc->cache_size != 0);
142 ++rc->cache_size;
228 return rc->cache_size + 5 - 1;
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_quarantine.h 85 void Init(uptr size, uptr cache_size) {
88 CHECK((size == 0 && cache_size == 0) || cache_size != 0);
92 atomic_store_relaxed(&max_cache_size_, cache_size);
104 uptr cache_size = GetCacheSize(); local
105 if (cache_size) {
111 // Check cache size anyway to accommodate for runtime cache_size change.
112 if (c->Size() > cache_size)
162 uptr cache_size = cache_.Size(); local
164 CHECK_GE(cache_size, overhead_size)
    [all...]
  /src/crypto/external/cpl/trousers/dist/src/tspi/ps/
tspps.c 893 UINT32 cache_size, i, j; local
897 if ((result = psfile_get_all_cache_entries(fd, &cache_size, &cache_entries)))
900 if (cache_size == 0) {
917 for (i = 0; i < cache_size; i++) {
946 if ((keyinfos = calloc(cache_size, sizeof(TSS_KM_KEYINFO))) == NULL) {
948 cache_size * sizeof(TSS_KM_KEYINFO));
953 for (i = 0; i < cache_size; i++) {
961 *size = cache_size;
980 UINT32 cache_size, i, j; local
984 if ((result = psfile_get_all_cache_entries(fd, &cache_size, &cache_entries))
    [all...]
  /src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
sanitizer_quarantine.h 84 void Init(uptr size, uptr cache_size) {
87 CHECK((size == 0 && cache_size == 0) || cache_size != 0);
91 atomic_store_relaxed(&max_cache_size_, cache_size);
103 uptr cache_size = GetCacheSize(); local
104 if (cache_size) {
110 // Check cache size anyway to accommodate for runtime cache_size change.
111 if (c->Size() > cache_size)
162 uptr cache_size = cache_.Size(); local
164 CHECK_GE(cache_size, overhead_size)
    [all...]
  /src/sys/kern/
subr_kmem.c 469 size_t cache_size = array[i].kc_size; local
476 if (cache_size > maxsize || cache_size > PAGE_SIZE) {
484 if (cache_size < COHERENCY_UNIT) {
485 if (COHERENCY_UNIT % cache_size > 0) {
490 } else if ((cache_size & (PAGE_SIZE - 1)) == 0) {
493 if ((cache_size % COHERENCY_UNIT) > 0) {
499 if ((cache_size >> shift) > maxidx) {
500 maxidx = cache_size >> shift;
504 pc = pool_cache_init(cache_size, align, 0, flags
    [all...]
  /src/external/gpl3/binutils/dist/ld/
lexsup.c 1775 bfd_size_type cache_size = strtoul (optarg, &end, 0); local
1778 link_info.max_cache_size = cache_size;
  /src/external/gpl3/binutils.old/dist/ld/
lexsup.c 1786 bfd_size_type cache_size = strtoul (optarg, &end, 0); local
1789 link_info.max_cache_size = cache_size;
  /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
sanitizer_quarantine.h 80 void Init(uptr size, uptr cache_size) {
83 CHECK((size == 0 && cache_size == 0) || cache_size != 0);
87 atomic_store_relaxed(&max_cache_size_, cache_size);
105 // Check cache size anyway to accommodate for runtime cache_size change.
157 uptr cache_size = cache_.Size(); local
159 CHECK_GE(cache_size, overhead_size);
164 if (cache_size > overhead_size &&
166 cache_size * kOverheadThresholdPercents) {
  /src/sys/arch/aarch64/include/
cpu.h 88 u_int cache_size; member in struct:aarch64_cache_unit
  /src/sys/external/bsd/drm2/dist/drm/amd/amdkfd/
kfd_crat.c 58 uint32_t cache_size; member in struct:kfd_gpu_cache_info
70 .cache_size = 16,
80 .cache_size = 16,
89 .cache_size = 8,
104 .cache_size = 16,
113 .cache_size = 8,
122 .cache_size = 4,
325 props->cache_size = cache->cache_size;
583 pcache->cache_size = pcache_info[cache_type].cache_size
    [all...]
kfd_crat.h 165 uint32_t cache_size; member in struct:crat_subtype_cache
kfd_topology.h 124 uint32_t cache_size; member in struct:kfd_cache_properties
  /src/sys/dev/sdmmc/
sdmmcvar.h 55 uint32_t cache_size; member in struct:sdmmc_ext_csd
  /src/external/bsd/byacc/dist/
reader.c 58 #define CACHE_SIZE 256
60 static int cinc, cache_size; variable
150 if (cinc >= cache_size)
152 cache_size += CACHE_SIZE;
153 cache = TREALLOC(char, cache, cache_size);
2051 cache_size = CACHE_SIZE;
2052 cache = TMALLOC(char, cache_size);
2752 assert(cache_size >= CACHE_SIZE)
    [all...]
  /src/external/gpl3/binutils/dist/include/
bfdlink.h 773 bfd_size_type cache_size;
775 /* The maximum cache size. Backend can use cache_size and and
771 bfd_size_type cache_size; member in struct:bfd_link_info
  /src/external/gpl3/binutils.old/dist/include/
bfdlink.h 765 bfd_size_type cache_size;
767 /* The maximum cache size. Backend can use cache_size and and
763 bfd_size_type cache_size; member in struct:bfd_link_info
  /src/external/gpl3/gcc/dist/gcc/
sched-deps.cc 471 static int cache_size;
4123 cache_size = 0;
4144 int i, luid = cache_size + n;
4159 for (i = cache_size; i < luid; i++)
4169 cache_size = luid;
4184 cache_size = 0;
4190 for (i = 0; i < cache_size; i++)
470 static int cache_size; variable
  /src/external/gpl3/gcc.old/dist/gcc/
sched-deps.cc 471 static int cache_size;
4092 cache_size = 0;
4113 int i, luid = cache_size + n;
4128 for (i = cache_size; i < luid; i++)
4138 cache_size = luid;
4153 cache_size = 0;
4159 for (i = 0; i < cache_size; i++)
470 static int cache_size; variable
  /src/external/gpl3/gdb/dist/include/
bfdlink.h 762 bfd_size_type cache_size;
764 /* The maximum cache size. Backend can use cache_size and and
760 bfd_size_type cache_size; member in struct:bfd_link_info
  /src/external/gpl3/gdb.old/dist/include/
bfdlink.h 756 bfd_size_type cache_size;
758 /* The maximum cache size. Backend can use cache_size and and
754 bfd_size_type cache_size; member in struct:bfd_link_info
  /src/sys/dev/pci/
mlyreg.h 608 u_int16_t cache_size; member in struct:mly_ioctl_getcontrollerinfo

Completed in 56 milliseconds

1 2