Searched refs:heap_key (Results 1 – 4 of 4) sorted by relevance
/netbsd-src/external/gpl3/gcc/dist/gcc/ |
H A D | fibonacci_heap.cc | 226 class heap_key class 229 heap_key (int k): key (k) in heap_key() function in selftest::heap_key 235 bool operator< (const heap_key &other) const in operator <() 240 bool operator== (const heap_key &other) const in operator ==() 245 bool operator> (const heap_key &other) const in operator >() 251 typedef fibonacci_heap<heap_key, int> class_fibonacci_heap_t; 261 heap->insert (heap_key (1), &value); in test_struct_key() 262 heap->insert (heap_key (10), &value); in test_struct_key() 263 heap->insert (heap_key (100), &value); in test_struct_key() 264 heap->insert (heap_key (1000), &value); in test_struct_key()
|
/netbsd-src/external/gpl3/gcc.old/dist/gcc/ |
H A D | fibonacci_heap.c | 226 class heap_key 229 heap_key (int k): key (k) in heap_key() function 235 bool operator< (const heap_key &other) const 240 bool operator== (const heap_key &other) const 245 bool operator> (const heap_key &other) const 251 typedef fibonacci_heap<heap_key, int> class_fibonacci_heap_t; 261 heap->insert (heap_key (1), &value); in test_struct_key() 262 heap->insert (heap_key (10), &value); in test_struct_key() 263 heap->insert (heap_key (100), &value); in test_struct_key() 264 heap->insert (heap_key (1000), &value); in test_struct_key()
|
/netbsd-src/external/gpl3/binutils.old/dist/gprofng/libcollector/ |
H A D | heaptrace.c | 71 static unsigned heap_key = COLLECTOR_TSD_INVALID_KEY; variable 73 #define CHCK_REENTRANCE(x) ( !heap_mode || ((x) = collector_interface->getKey( heap_key )) == NULL… 158 heap_key = collector_interface->createKey (sizeof ( int), NULL, NULL); in open_experiment() 159 if (heap_key == (unsigned) - 1) in open_experiment() 216 heap_key = COLLECTOR_TSD_INVALID_KEY; in close_experiment() 226 heap_key = COLLECTOR_TSD_INVALID_KEY; in detach_experiment()
|
/netbsd-src/external/gpl3/binutils/dist/gprofng/libcollector/ |
H A D | heaptrace.c | 65 static unsigned heap_key = COLLECTOR_TSD_INVALID_KEY; variable 67 #define CHCK_REENTRANCE(x) ( !heap_mode || ((x) = collector_interface->getKey( heap_key )) == NULL… 142 heap_key = collector_interface->createKey (sizeof ( int), NULL, NULL); in open_experiment() 143 if (heap_key == (unsigned) - 1) in open_experiment() 208 heap_key = COLLECTOR_TSD_INVALID_KEY; in close_experiment() 218 heap_key = COLLECTOR_TSD_INVALID_KEY; in detach_experiment()
|