Searched refs:buddy (Results 1 - 6 of 6) sorted by relevance
/third_party/ffmpeg/libavfilter/dnn/ |
H A D | dnn_backend_native_layer_pad.c | 150 int buddy = before_get_buddy(n, before_paddings, params->mode); in ff_dnn_execute_layer_pad() local 151 float *src = output + buddy * new_hwc_stride; in ff_dnn_execute_layer_pad() 163 int buddy = after_get_buddy(given, number + before_paddings, params->mode); in ff_dnn_execute_layer_pad() local 164 float *src = output + buddy * new_hwc_stride; in ff_dnn_execute_layer_pad() 181 int buddy = before_get_buddy(h, before_paddings, params->mode); in ff_dnn_execute_layer_pad() local 182 float *src = start + buddy * new_wc_stride; in ff_dnn_execute_layer_pad() 194 int buddy = after_get_buddy(given, height + before_paddings, params->mode); in ff_dnn_execute_layer_pad() local 195 float *src = start + buddy * new_wc_stride; in ff_dnn_execute_layer_pad() 214 int buddy = before_get_buddy(w, before_paddings, params->mode); in ff_dnn_execute_layer_pad() local 215 float *src = start + buddy * new_c_strid in ff_dnn_execute_layer_pad() 227 int buddy = after_get_buddy(given, width + before_paddings, params->mode); ff_dnn_execute_layer_pad() local 247 int buddy = before_get_buddy(c, before_paddings, params->mode); ff_dnn_execute_layer_pad() local 258 int buddy = after_get_buddy(given, channel + before_paddings, params->mode); ff_dnn_execute_layer_pad() local [all...] |
/third_party/node/deps/openssl/openssl/crypto/ |
H A D | mem_sec.c | 282 * This is a pretty standard buddy allocator. We keep areas in a multiple 680 void *buddy; in sh_free() local 694 while ((buddy = sh_find_my_buddy(ptr, list)) != NULL) { in sh_free() 695 OPENSSL_assert(ptr == sh_find_my_buddy(buddy, list)); in sh_free() 701 sh_clearbit(buddy, list, sh.bittable); in sh_free() 702 sh_remove_from_list(buddy); in sh_free() 707 memset(ptr > buddy ? ptr : buddy, 0, sizeof(SH_LIST)); in sh_free() 708 if (ptr > buddy) in sh_free() 709 ptr = buddy; in sh_free() [all...] |
/third_party/openssl/crypto/ |
H A D | mem_sec.c | 276 * This is a pretty standard buddy allocator. We keep areas in a multiple 674 void *buddy; in sh_free() local 688 while ((buddy = sh_find_my_buddy(ptr, list)) != NULL) { in sh_free() 689 OPENSSL_assert(ptr == sh_find_my_buddy(buddy, list)); in sh_free() 695 sh_clearbit(buddy, list, sh.bittable); in sh_free() 696 sh_remove_from_list(buddy); in sh_free() 701 memset(ptr > buddy ? ptr : buddy, 0, sizeof(SH_LIST)); in sh_free() 702 if (ptr > buddy) in sh_free() 703 ptr = buddy; in sh_free() [all...] |
/third_party/skia/third_party/vulkanmemoryallocator/include/ |
H A D | vk_mem_alloc.h | 781 "buddy". Its internal data structure is based on a tree of blocks, each having 787 two buddy nodes become free, they are merged back into one larger node. 791 The advantage of buddy allocation algorithm over default algorithm is faster 798 To use buddy allocation algorithm with a custom pool, add flag 802 Several limitations apply to pools that use buddy algorithm: 2883 /** \brief Enables alternative, buddy allocation algorithm in this pool. 6718 Node* buddy; member 11680 rootNode->buddy = VMA_NULL; in Init() 11869 Lost allocations are not supported in buddy allocator at the moment. in MakeRequestedAllocationsLost() 11878 Lost allocations are not supported in buddy allocato in MakeAllocationsLost() [all...] |
/third_party/python/Lib/test/ |
H A D | test_io.py | 3774 t1.buddy = t2 3775 t2.buddy = t1
|
H A D | _test_multiprocessing.py | 3764 a.buddy = b 3765 b.buddy = a
|
Completed in 33 milliseconds