Symbol: bin
src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_hal/ar5416/ar5416_attach.c
648
int bin, cur_bin;
src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_hal/ar5416/ar5416_attach.c
684
bin = bb_spur * 32;
src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_hal/ar5416/ar5416_attach.c
732
upper = bin + 100;
src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_hal/ar5416/ar5416_attach.c
733
lower = bin - 100;
src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_hal/ar5416/ar5416_attach.c
771
upper = bin + 120;
src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_hal/ar5416/ar5416_attach.c
772
lower = bin - 120;
src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_hal/ar5416/ar5416_attach.c
776
if ((abs(cur_vit_mask - bin)) < 75) {
src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_hal/ar9002/ar9280_attach.c
582
int bin, cur_bin;
src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_hal/ar9002/ar9280_attach.c
655
bin = bb_spur * 320;
src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_hal/ar9002/ar9280_attach.c
722
upper = bin + 100;
src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_hal/ar9002/ar9280_attach.c
723
lower = bin - 100;
src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_hal/ar9002/ar9280_attach.c
761
upper = bin + 120;
src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_hal/ar9002/ar9280_attach.c
762
lower = bin - 120;
src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_hal/ar9002/ar9280_attach.c
766
if ((abs(cur_vit_mask - bin)) < 75) {
src/bin/unzip/extract.c
1354
char *nul="[empty] ", *txt="[text] ", *bin="[binary]";
src/bin/unzip/extract.c
1441
bin)), uO.cflag? NEWLINE : ""));
src/bin/unzip/extract.c
1472
"" : (G.pInfo->textfile? txt : bin), uO.cflag? NEWLINE : ""));
src/bin/unzip/extract.c
1502
"" : (G.pInfo->textfile? txt : bin), uO.cflag? NEWLINE : ""));
src/bin/unzip/extract.c
1516
"" : (G.pInfo->textfile? txt : bin), uO.cflag? NEWLINE : ""));
src/bin/unzip/extract.c
1564
"" : (G.pInfo->textfile? txt : bin), uO.cflag? NEWLINE : ""));
src/system/kernel/debug/heap.cpp
1198
heap_bin *bin = &heap->bins[heap->bin_count];
src/system/kernel/debug/heap.cpp
1199
mutex_init(&bin->lock, "heap bin lock");
src/system/kernel/debug/heap.cpp
1200
bin->element_size = binSize;
src/system/kernel/debug/heap.cpp
1201
bin->max_free_count = heap->page_size / binSize;
src/system/kernel/debug/heap.cpp
1202
bin->page_list = NULL;
src/system/kernel/debug/heap.cpp
1440
heap_bin *bin = &heap->bins[binIndex];
src/system/kernel/debug/heap.cpp
1442
heap, size, binIndex, bin->element_size));
src/system/kernel/debug/heap.cpp
1444
MutexLocker binLocker(bin->lock);
src/system/kernel/debug/heap.cpp
1445
heap_page *page = bin->page_list;
src/system/kernel/debug/heap.cpp
1471
page->free_count = bin->max_free_count;
src/system/kernel/debug/heap.cpp
1475
bin->page_list = page;
src/system/kernel/debug/heap.cpp
1487
+ page->empty_index * bin->element_size);
src/system/kernel/debug/heap.cpp
1494
bin->page_list = page->next;
src/system/kernel/debug/heap.cpp
1502
heap_add_leak_check_info(heap, (addr_t)address, bin->element_size, size);
src/system/kernel/debug/heap.cpp
1640
heap_bin *bin = &heap->bins[page->bin_index];
src/system/kernel/debug/heap.cpp
1646
MutexLocker binLocker(bin->lock);
src/system/kernel/debug/heap.cpp
1660
for (uint32 i = 1; i < bin->element_size / sizeof(uint32); i++)
src/system/kernel/debug/heap.cpp
1664
MutexLocker binLocker(bin->lock);
src/system/kernel/debug/heap.cpp
1666
* heap->page_size) % bin->element_size != 0) {
src/system/kernel/debug/heap.cpp
1668
"element size %" B_PRIu32 "\n", address, bin->element_size);
src/system/kernel/debug/heap.cpp
1677
if (page->free_count == bin->max_free_count) {
src/system/kernel/debug/heap.cpp
1680
heap_unlink_page(page, &bin->page_list);
src/system/kernel/debug/heap.cpp
1686
heap_link_page(page, &bin->page_list);
src/system/kernel/debug/heap.cpp
1696
heap_unlink_page(page, &bin->page_list);
src/system/kernel/debug/heap.cpp
1818
heap_bin *bin = &heap->bins[page->bin_index];
src/system/kernel/debug/heap.cpp
1819
maxSize = bin->element_size;
src/system/kernel/debug/heap.cpp
325
dump_bin(heap_bin *bin)
src/system/kernel/debug/heap.cpp
328
for (heap_page *page = bin->page_list; page != NULL; page = page->next)
src/system/kernel/debug/heap.cpp
332
"(%" B_PRIu32 " pages);\n", bin->element_size, bin->max_free_count,
src/system/kernel/debug/heap.cpp
333
bin->page_list, count);
src/system/kernel/debug/heap.cpp
335
for (heap_page *page = bin->page_list; page != NULL; page = page->next)
src/system/kernel/debug/heap.cpp
937
heap_bin *bin = &heap->bins[i];
src/system/kernel/debug/heap.cpp
939
heap_page *page = bin->page_list;
src/system/kernel/debug/heap.cpp
990
if (((addr_t)element - pageBase) % bin->element_size != 0)
src/system/kernel/debug/heap.cpp
997
uint32 slotCount = bin->max_free_count;
src/system/libroot/posix/malloc/debug/heap.cpp
1047
heap_bin *bin = &heap->bins[binIndex];
src/system/libroot/posix/malloc/debug/heap.cpp
1050
heap, size, binIndex, bin->element_size));
src/system/libroot/posix/malloc/debug/heap.cpp
1052
MutexLocker binLocker(bin->lock);
src/system/libroot/posix/malloc/debug/heap.cpp
1053
heap_page *page = bin->page_list;
src/system/libroot/posix/malloc/debug/heap.cpp
1079
page->free_count = bin->max_free_count;
src/system/libroot/posix/malloc/debug/heap.cpp
1083
bin->page_list = page;
src/system/libroot/posix/malloc/debug/heap.cpp
1095
+ page->empty_index * bin->element_size);
src/system/libroot/posix/malloc/debug/heap.cpp
1102
bin->page_list = page->next;
src/system/libroot/posix/malloc/debug/heap.cpp
1108
heap_add_leak_check_info((addr_t)address, bin->element_size, size);
src/system/libroot/posix/malloc/debug/heap.cpp
1223
heap_bin *bin = &heap->bins[page->bin_index];
src/system/libroot/posix/malloc/debug/heap.cpp
1224
if (((addr_t)address - pageBase) % bin->element_size != 0) {
src/system/libroot/posix/malloc/debug/heap.cpp
1227
(void *)pageBase, bin->element_size);
src/system/libroot/posix/malloc/debug/heap.cpp
1231
MutexLocker binLocker(bin->lock);
src/system/libroot/posix/malloc/debug/heap.cpp
1247
+ bin->element_size - sizeof(heap_leak_check_info));
src/system/libroot/posix/malloc/debug/heap.cpp
1248
if (info->size > bin->element_size - sizeof(addr_t)
src/system/libroot/posix/malloc/debug/heap.cpp
1253
info->size, bin->element_size);
src/system/libroot/posix/malloc/debug/heap.cpp
1269
for (uint32 i = 0; i < bin->element_size / sizeof(uint32); i++)
src/system/libroot/posix/malloc/debug/heap.cpp
1278
if (page->free_count == bin->max_free_count) {
src/system/libroot/posix/malloc/debug/heap.cpp
1281
heap_unlink_page(page, &bin->page_list);
src/system/libroot/posix/malloc/debug/heap.cpp
1287
heap_link_page(page, &bin->page_list);
src/system/libroot/posix/malloc/debug/heap.cpp
1297
heap_unlink_page(page, &bin->page_list);
src/system/libroot/posix/malloc/debug/heap.cpp
1435
heap_bin *bin = &heap->bins[page->bin_index];
src/system/libroot/posix/malloc/debug/heap.cpp
1436
maxSize = bin->element_size;
src/system/libroot/posix/malloc/debug/heap.cpp
1550
heap_bin *bin = &heap->bins[page->bin_index];
src/system/libroot/posix/malloc/debug/heap.cpp
1551
if (((addr_t)address - pageBase) % bin->element_size != 0) {
src/system/libroot/posix/malloc/debug/heap.cpp
1554
address, (void *)pageBase, bin->element_size);
src/system/libroot/posix/malloc/debug/heap.cpp
1558
MutexLocker binLocker(bin->lock);
src/system/libroot/posix/malloc/debug/heap.cpp
1560
info = (heap_leak_check_info *)((addr_t)address + bin->element_size
src/system/libroot/posix/malloc/debug/heap.cpp
1562
if (info->size > bin->element_size - sizeof(addr_t)
src/system/libroot/posix/malloc/debug/heap.cpp
1567
info->size, bin->element_size);
src/system/libroot/posix/malloc/debug/heap.cpp
226
dump_bin(heap_bin *bin)
src/system/libroot/posix/malloc/debug/heap.cpp
229
bin->element_size, bin->max_free_count, bin->page_list);
src/system/libroot/posix/malloc/debug/heap.cpp
231
for (heap_page *temp = bin->page_list; temp != NULL; temp = temp->next)
src/system/libroot/posix/malloc/debug/heap.cpp
568
heap_bin *bin = &heap->bins[i];
src/system/libroot/posix/malloc/debug/heap.cpp
570
heap_page *page = bin->page_list;
src/system/libroot/posix/malloc/debug/heap.cpp
624
if (((addr_t)element - pageBase) % bin->element_size != 0)
src/system/libroot/posix/malloc/debug/heap.cpp
631
uint32 slotCount = bin->max_free_count;
src/system/libroot/posix/malloc/debug/heap.cpp
809
heap_bin *bin = &heap->bins[heap->bin_count];
src/system/libroot/posix/malloc/debug/heap.cpp
810
mutex_init(&bin->lock, "heap bin lock");
src/system/libroot/posix/malloc/debug/heap.cpp
811
bin->element_size = binSize;
src/system/libroot/posix/malloc/debug/heap.cpp
812
bin->max_free_count = heap->page_size / binSize;
src/system/libroot/posix/malloc/debug/heap.cpp
813
bin->page_list = NULL;