HomeSort by: relevance | last modified time | path
    Searched refs:surplus (Results 1 - 10 of 10) sorted by relevancy

  /src/external/bsd/jemalloc/dist/include/jemalloc/internal/
prof_externs.h 118 * Surplus is a terminology referring to the amount of bytes beyond what's
124 * If function returns true surplus will contain number of bytes beyond that
130 tsd_t *tsd, size_t usize, size_t *surplus) {
131 if (surplus != NULL) {
133 * This is a dead store: the surplus will be overwritten before
136 * debugging purpose, because a valid surplus value is strictly
139 *surplus = SIZE_MAX;
152 if (surplus != NULL) {
153 *surplus = (size_t)(accumbytes - sample_wait);
  /src/external/bsd/jemalloc/include/jemalloc/internal/
prof_externs.h 118 * Surplus is a terminology referring to the amount of bytes beyond what's
124 * If function returns true surplus will contain number of bytes beyond that
130 tsd_t *tsd, size_t usize, size_t *surplus) {
131 if (surplus != NULL) {
133 * This is a dead store: the surplus will be overwritten before
136 * debugging purpose, because a valid surplus value is strictly
139 *surplus = SIZE_MAX;
152 if (surplus != NULL) {
153 *surplus = (size_t)(accumbytes - sample_wait);
  /src/external/bsd/jemalloc.old/dist/include/jemalloc/internal/
thread_event.h 233 * Surplus is a terminology referring to the amount of bytes beyond what's
240 size_t *surplus) {
241 if (surplus != NULL) {
243 * This is a dead store: the surplus will be overwritten before
246 * debugging purpose, because a valid surplus value is strictly
249 *surplus = SIZE_MAX;
262 if (surplus != NULL) {
263 *surplus = (size_t)(accumbytes - sample_wait);
  /src/external/bsd/jemalloc.old/include/jemalloc/internal/
thread_event.h 233 * Surplus is a terminology referring to the amount of bytes beyond what's
240 size_t *surplus) {
241 if (surplus != NULL) {
243 * This is a dead store: the surplus will be overwritten before
246 * debugging purpose, because a valid surplus value is strictly
249 *surplus = SIZE_MAX;
262 if (surplus != NULL) {
263 *surplus = (size_t)(accumbytes - sample_wait);
  /src/external/bsd/wpa/dist/src/ap/
wmm.c 217 u16 val, surplus; local
233 wpa_printf(MSG_DEBUG, "WMM: Surplus Bandwidth Allowance: %u.%04u",
257 surplus = le_to_host16(tspec->surplus_bandwidth_allowance);
258 if (surplus <= 0x2000) {
259 wpa_printf(MSG_DEBUG, "WMM: Surplus Bandwidth Allowance not "
264 medium_time = (u64) surplus * pps * duration / 0x2000;
  /src/external/bsd/zstd/dist/lib/compress/
zstd_cwksp.h 536 size_t const surplus = (alignment > sizeof(void*)) ? alignment - sizeof(void*) : 0;
537 void* const start = ZSTD_cwksp_reserve_object(ws, byteSize + surplus);
539 if (surplus == 0) return start;
541 return (void*)(((size_t)start + surplus) & ~mask);
  /src/external/bsd/jemalloc/dist/src/
jemalloc.c 3132 size_t surplus; local
3134 tsd, (batch + 1) * usize, &surplus);
3136 assert(surplus < usize);
3176 size_t surplus = SIZE_MAX; /* Dead store. */ local
3180 tsd, batch * usize, &surplus);
3187 batch -= surplus / usize + 1;
  /src/external/bsd/jemalloc.old/dist/src/
jemalloc.c 4151 size_t surplus; local
4153 (batch + 1) * usize, &surplus);
4155 assert(surplus < usize);
4195 size_t surplus = SIZE_MAX; /* Dead store. */ local
4199 batch * usize, &surplus);
4206 batch -= surplus / usize + 1;
  /src/external/bsd/libarchive/dist/libarchive/
archive_read_disk_windows.c 704 int64_t surplus; local
707 surplus = size % t->current_filesystem->bytesPerSector;
708 size -= surplus;
  /src/external/public-domain/sqlite/dist/
sqlite3.c 4140 ** have silently ignored surplus bits in the flags parameter to
74313 int surplus; \/* Overflow payload available for local storage *\/ local
74340 int surplus; \/* Overflow payload available for local storage *\/ local
    [all...]

Completed in 85 milliseconds