HomeSort by: relevance | last modified time | path
    Searched defs:CACHELINE (Results 1 - 9 of 9) sorted by relevancy

  /src/sys/arch/powerpc/powerpc/
ofwreal.S 50 #define CACHELINE 32 /* Note that this value is really
216 li %r6,CACHELINE
  /src/external/bsd/jemalloc.old/dist/include/jemalloc/internal/
jemalloc_internal_types.h 87 * In addition, this controls the spacing of cacheline-spaced size classes.
89 * CACHELINE cannot be based on LG_CACHELINE because __declspec(align()) can
93 #define CACHELINE 64
94 #define CACHELINE_MASK (CACHELINE - 1)
96 /* Return the smallest cacheline multiple that is >= s. */
  /src/external/bsd/jemalloc.old/include/jemalloc/internal/
jemalloc_internal_types.h 87 * In addition, this controls the spacing of cacheline-spaced size classes.
89 * CACHELINE cannot be based on LG_CACHELINE because __declspec(align()) can
93 #define CACHELINE 64
94 #define CACHELINE_MASK (CACHELINE - 1)
96 /* Return the smallest cacheline multiple that is >= s. */
  /src/external/bsd/jemalloc/dist/include/jemalloc/internal/
jemalloc_internal_types.h 85 * In addition, this controls the spacing of cacheline-spaced size classes.
87 * CACHELINE cannot be based on LG_CACHELINE because __declspec(align()) can
91 #define CACHELINE 64
92 #define CACHELINE_MASK (CACHELINE - 1)
94 /* Return the smallest cacheline multiple that is >= s. */
  /src/external/bsd/jemalloc/include/jemalloc/internal/
jemalloc_internal_types.h 85 * In addition, this controls the spacing of cacheline-spaced size classes.
87 * CACHELINE cannot be based on LG_CACHELINE because __declspec(align()) can
91 #define CACHELINE 64
92 #define CACHELINE_MASK (CACHELINE - 1)
94 /* Return the smallest cacheline multiple that is >= s. */
  /src/external/bsd/openldap/dist/servers/slapd/back-mdb/
back-mdb.h 178 #ifndef CACHELINE
179 #define CACHELINE 64
203 char pad[(sizeof(IndexRbody)+CACHELINE-1) & (!CACHELINE-1)];
  /src/external/bsd/openldap/dist/libraries/libldap/
tpool.c 43 #ifndef CACHELINE
44 #define CACHELINE 64
258 char *ptr = LDAP_CALLOC(1, sizeof(struct ldap_int_thread_poolq_s) + CACHELINE-1);
266 pool->ltp_wqs[i] = (struct ldap_int_thread_poolq_s *)(((size_t)ptr + CACHELINE-1) & ~(CACHELINE-1));
596 char *ptr = LDAP_CALLOC(1, sizeof(struct ldap_int_thread_poolq_s) + CACHELINE-1);
602 pq = (struct ldap_int_thread_poolq_s *)(((size_t)ptr + CACHELINE-1) & ~(CACHELINE-1));
  /src/lib/libc/stdlib/
jemalloc.c 313 #define CACHELINE ((size_t)(1 << CACHELINE_2POW))
743 * pages are carved up in cacheline-size quanta, so that there is no chance of
903 /* Return the smallest cacheline multiple that is >= s. */
905 (((s) + (CACHELINE - 1)) & ~(CACHELINE - 1))
1068 /* Round size up to nearest multiple of the cacheline size. */
  /src/external/bsd/openldap/dist/libraries/liblmdb/
mdb.c 692 #ifndef CACHELINE
693 #define CACHELINE 64
719 /** The actual reader record, with cacheline padding. */
728 char pad[(sizeof(MDB_rxbody)+CACHELINE-1) & ~(CACHELINE-1)];
782 char pad[(sizeof(MDB_txbody)+CACHELINE-1) & ~(CACHELINE-1)];
792 char pad[(MNAME_LEN+CACHELINE-1) & ~(CACHELINE-1)];

Completed in 25 milliseconds