| /f-stack/app/redis-5.0.5/deps/jemalloc/test/unit/ |
| H A D | stats.c | 4 size_t sz, allocated, active, resident, mapped; in TEST_BEGIN() local 18 assert_zu_le(allocated, active, in TEST_BEGIN() 31 size_t allocated; in TEST_BEGIN() local 44 (void *)&allocated, &sz, NULL, 0), expected, in TEST_BEGIN() 56 assert_zu_gt(allocated, 0, in TEST_BEGIN() 145 size_t sz, allocated; in TEST_BEGIN() local 162 (void *)&allocated, &sz, NULL, 0), expected, in TEST_BEGIN() 174 assert_zu_gt(allocated, 0, in TEST_BEGIN() 190 size_t sz, allocated; in TEST_BEGIN() local 202 (void *)&allocated, &sz, NULL, 0), expected, in TEST_BEGIN() [all …]
|
| H A D | retained.c | 132 size_t allocated = esz * nthreads * PER_THD_NALLOCS; in TEST_BEGIN() local 134 assert_zu_le(allocated, active, "Unexpected active memory"); in TEST_BEGIN() 150 assert_zu_lt(usable, allocated, in TEST_BEGIN() 153 allocated); in TEST_BEGIN()
|
| /f-stack/freebsd/crypto/via/ |
| H A D | padlock_cipher.c | 168 padlock_cipher_alloc(struct cryptop *crp, int *allocated) in padlock_cipher_alloc() argument 175 *allocated = 0; in padlock_cipher_alloc() 179 *allocated = 1; in padlock_cipher_alloc() 193 int allocated; in padlock_cipher_process() local 195 buf = padlock_cipher_alloc(crp, &allocated); in padlock_cipher_process() 222 if (allocated) { in padlock_cipher_process() 233 if (allocated) { in padlock_cipher_process()
|
| /f-stack/app/nginx-1.16.1/src/http/v2/ |
| H A D | ngx_http_v2_table.c | 131 index = (h2c->hpack.added - index - 1) % h2c->hpack.allocated; in ngx_http_v2_get_indexed_header() 201 h2c->hpack.allocated = 64; in ngx_http_v2_add_header() 207 * h2c->hpack.allocated); in ngx_http_v2_add_header() 268 if (h2c->hpack.allocated == h2c->hpack.added - h2c->hpack.deleted) { in ngx_http_v2_add_header() 272 * (h2c->hpack.allocated + 64)); in ngx_http_v2_add_header() 277 index = h2c->hpack.deleted % h2c->hpack.allocated; in ngx_http_v2_add_header() 280 (h2c->hpack.allocated - index) in ngx_http_v2_add_header() 283 ngx_memcpy(&entries[h2c->hpack.allocated - index], h2c->hpack.entries, in ngx_http_v2_add_header() 290 h2c->hpack.added = h2c->hpack.allocated; in ngx_http_v2_add_header() 293 h2c->hpack.allocated += 64; in ngx_http_v2_add_header() [all …]
|
| /f-stack/dpdk/drivers/net/bnxt/tf_core/ |
| H A D | tf_identifier.c | 204 int allocated = 0; in tf_ident_free() local 221 aparms.allocated = &allocated; in tf_ident_free() 226 if (allocated != TF_RM_ALLOCATED_ENTRY_IN_USE) { in tf_ident_free() 280 int allocated = 0; in tf_ident_search() local 304 aparms.allocated = &allocated; in tf_ident_search() 309 if (allocated != TF_RM_ALLOCATED_ENTRY_IN_USE) { in tf_ident_search()
|
| H A D | tf_tbl.c | 234 int allocated = 0; in tf_tbl_free() local 249 aparms.allocated = &allocated; in tf_tbl_free() 254 if (allocated != TF_RM_ALLOCATED_ENTRY_IN_USE) { in tf_tbl_free() 436 int allocated = 0; in tf_tbl_set() local 454 aparms.allocated = &allocated; in tf_tbl_set() 459 if (allocated != TF_RM_ALLOCATED_ENTRY_IN_USE) { in tf_tbl_set() 506 int allocated = 0; in tf_tbl_get() local 523 aparms.allocated = &allocated; in tf_tbl_get() 528 if (allocated != TF_RM_ALLOCATED_ENTRY_IN_USE) { in tf_tbl_get()
|
| H A D | tf_tcam.c | 291 int allocated = 0; in tf_tcam_free() local 336 aparms.allocated = &allocated; in tf_tcam_free() 341 if (allocated != TF_RM_ALLOCATED_ENTRY_IN_USE) { in tf_tcam_free() 403 if (allocated == TF_RM_ALLOCATED_ENTRY_IN_USE) { in tf_tcam_free() 586 int allocated = 0; in tf_tcam_set() local 630 aparms.allocated = &allocated; in tf_tcam_set() 635 if (allocated != TF_RM_ALLOCATED_ENTRY_IN_USE) { in tf_tcam_set()
|
| /f-stack/freebsd/crypto/armv8/ |
| H A D | armv8_crypto.c | 361 armv8_crypto_cipher_alloc(struct cryptop *crp, int start, int length, int *allocated) in armv8_crypto_cipher_alloc() argument 367 *allocated = 0; in armv8_crypto_cipher_alloc() 372 *allocated = 1; in armv8_crypto_cipher_alloc() 375 *allocated = 0; in armv8_crypto_cipher_alloc() 387 int allocated, authallocated, outallocated, i; in armv8_crypto_cipher_process() local 396 allocated = 0; in armv8_crypto_cipher_process() 403 crp->crp_payload_length, &allocated); in armv8_crypto_cipher_process() 424 if (allocated) in armv8_crypto_cipher_process() 439 outcopy = allocated; in armv8_crypto_cipher_process() 517 if (allocated) in armv8_crypto_cipher_process()
|
| /f-stack/app/redis-5.0.5/deps/jemalloc/src/ |
| H A D | base.c | 211 base->allocated += size; in base_extent_bump_alloc_post() 219 assert(base->allocated <= base->resident); in base_extent_bump_alloc_post() 327 base->allocated += sizeof(base_block_t); in base_extent_alloc() 337 assert(base->allocated <= base->resident); in base_extent_alloc() 379 base->allocated = sizeof(base_block_t); in base_new() 385 assert(base->allocated <= base->resident); in base_new() 481 base_stats_get(tsdn_t *tsdn, base_t *base, size_t *allocated, size_t *resident, in base_stats_get() argument 486 assert(base->allocated <= base->resident); in base_stats_get() 488 *allocated = base->allocated; in base_stats_get()
|
| /f-stack/dpdk/app/test-compress-perf/ |
| H A D | comp_perf_test_cyclecount.c | 164 int allocated = 0; in main_loop() local 285 allocated += ops_needed; in main_loop() 348 allocated); in main_loop() 353 if (num_deq < allocated) in main_loop() 387 allocated -= num_deq; in main_loop() 445 allocated -= num_deq; in main_loop() 448 allocated = 0; in main_loop() 451 if (allocated) in main_loop() 452 rte_mempool_put_bulk(mem->op_pool, (void **)ops, allocated); in main_loop()
|
| H A D | comp_perf_test_throughput.c | 60 int allocated = 0; in main_loop() local 160 allocated += ops_needed; in main_loop() 244 allocated -= num_deq; in main_loop() 298 allocated -= num_deq; in main_loop() 313 rte_mempool_put_bulk(mem->op_pool, (void **)ops, allocated); in main_loop()
|
| H A D | comp_perf_test_verify.c | 63 int allocated = 0; in main_loop() local 165 allocated += ops_needed; in main_loop() 280 allocated -= num_deq; in main_loop() 364 allocated -= num_deq; in main_loop() 371 rte_mempool_put_bulk(mem->op_pool, (void **)ops, allocated); in main_loop()
|
| /f-stack/app/nginx-1.16.1/src/http/modules/ |
| H A D | ngx_http_try_files_module.c | 81 size_t len, root, alias, reserve, allocated; in ngx_http_try_files_handler() local 102 allocated = 0; in ngx_http_try_files_handler() 144 if (reserve > allocated || !allocated) { in ngx_http_try_files_handler() 147 allocated = reserve + 16; in ngx_http_try_files_handler() 149 if (ngx_http_map_uri_to_path(r, &path, &root, allocated) == NULL) { in ngx_http_try_files_handler()
|
| H A D | ngx_http_random_index_module.c | 77 size_t len, allocated, root; in ngx_http_random_index_handler() local 111 allocated = path.len; in ngx_http_random_index_handler() 179 if (path.len + 1 + len + 1 > allocated) { in ngx_http_random_index_handler() 180 allocated = path.len + 1 + len + 1 in ngx_http_random_index_handler() 183 filename = ngx_pnalloc(r->pool, allocated); in ngx_http_random_index_handler()
|
| /f-stack/dpdk/doc/guides/faq/ |
| H A D | faq.rst | 12 If I want to change the number of hugepages allocated, how do I remove the original pages allocated? 15 The number of pages allocated can be seen by executing the following command:: 31 I have set up a total of 1024 Hugepages (that is, allocated 512 2M pages to each NUMA node). 33 …rantee that huge pages will be reserved on specific sockets. Therefore, allocated huge pages may n… 41 If your system has a lot (>1 GB size) of hugepage memory, not all of it will be allocated. 42 Due to hugepages typically being allocated on a local NUMA node, the hugepages allocation the appli… 45 therefore all the hugepages are allocated on the wrong socket. 56 In this way, the hugepages have a greater chance of being allocated to the correct socket. 57 …e used to ensure the availability of memory for each socket, so that if hugepages were allocated on 105 Without NUMA enabled, memory is allocated from both sockets, since memory is interleaved. [all …]
|
| /f-stack/app/redis-5.0.5/src/ |
| H A D | zmalloc.c | 305 int zmalloc_get_allocator_info(size_t *allocated, in zmalloc_get_allocator_info() argument 310 *allocated = *resident = *active = 0; in zmalloc_get_allocator_info() 323 je_mallctl("stats.allocated", allocated, &sz, NULL, 0); in zmalloc_get_allocator_info() 327 int zmalloc_get_allocator_info(size_t *allocated, in zmalloc_get_allocator_info() argument 330 *allocated = *resident = *active = 0; in zmalloc_get_allocator_info()
|
| /f-stack/freebsd/contrib/device-tree/Bindings/security/tpm/ |
| H A D | tpm-i2c.txt | 7 - linux,sml-base : 64-bit base address of the reserved memory allocated for 9 - linux,sml-size : size of the memory allocated for the firmware event log
|
| H A D | ibmvtpm.txt | 22 - linux,sml-base : 64-bit base address of the reserved memory allocated 24 - linux,sml-size : size of the memory allocated for the firmware event log
|
| /f-stack/freebsd/contrib/device-tree/Bindings/powerpc/fsl/ |
| H A D | dcsr.txt | 57 This node represents the region of DCSR space allocated to the EPU 107 This node represents the region of DCSR space allocated to the NPC 144 This node represents the region of DCSR space allocated to the NXC 168 This node represents the region of DCSR space allocated to 202 This node represents the region of DCSR space allocated to 231 This node represents the region of DCSR space allocated to 259 This node represents the region of DCSR space allocated to 291 This node represents the region of DCSR space allocated to 320 This node represents the region of DCSR space allocated to 349 This node represents the region of DCSR space allocated to
|
| /f-stack/freebsd/crypto/aesni/ |
| H A D | aesni.c | 388 aesni_cipher_alloc(struct cryptop *crp, int start, int length, bool *allocated) in aesni_cipher_alloc() argument 394 *allocated = false; in aesni_cipher_alloc() 399 *allocated = true; in aesni_cipher_alloc() 402 *allocated = false; in aesni_cipher_alloc() 696 bool encflag, allocated, authallocated, outallocated, outcopy; in aesni_cipher_crypt() local 699 crp->crp_payload_length, &allocated); in aesni_cipher_crypt() 724 if (allocated) in aesni_cipher_crypt() 739 outcopy = allocated; in aesni_cipher_crypt() 818 if (allocated) in aesni_cipher_crypt()
|
| /f-stack/freebsd/kern/ |
| H A D | bus_if.m | 295 * resource could be allocated 311 * Activate a resource previously allocated with 317 * @param _child the device which allocated the resource 339 * @param _child the device which allocated the resource 358 * Release a mapping previously allocated with 363 * @param _child the device which allocated the resource 380 * Deactivate a resource previously allocated with 384 * @param _child the device which allocated the resource 406 * @param _child the device which allocated the resource 446 * @param _child the device which allocated the resource [all …]
|
| /f-stack/freebsd/contrib/device-tree/Bindings/interrupt-controller/ |
| H A D | loongson,pch-msi.yaml | 26 u32 value of the base of parent HyperTransport vector allocated 34 u32 value of the number of parent HyperTransport vectors allocated
|
| /f-stack/freebsd/contrib/device-tree/Bindings/dma/ |
| H A D | snps,dma-spear1340.yaml | 25 for transfers on dynamically allocated channel. Fourth cell is the 26 peripheral master identifier for transfers on an allocated channel. 66 (first free allocated), while one - descending (last free allocated).
|
| H A D | ingenic,dma.yaml | 43 device on the allocated channel, as defined in the SoC documentation. 45 - Channel: If set to 0xffffffff, any available channel will be allocated
|
| /f-stack/dpdk/doc/guides/prog_guide/ |
| H A D | env_abstraction_layer.rst | 75 allocated by core components. The memory allocated during ``rte_eal_init()`` 128 preallocated, and all memory will be allocated at runtime, as needed. 178 freed exactly as they were allocated. These applications may also require 247 which using externally allocated memory can work: the malloc heap API's, and 250 + Using heap API's for externally allocated memory 253 allocated memory in DPDK. In this way, support for externally allocated memory 289 + Using externally allocated memory without DPDK API's 294 externally allocated area. To support use cases where externally allocated 828 #. As a header on a block of free or allocated memory - normal case 849 this block was allocated. [all …]
|