Searched refs:Tab (Results 1 - 3 of 3) sorted by relevance

/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.misc-tests/
H A Dsort2.c10 int Tab[100]; variable
20 Tab[K++] = J&1 ? J+1 : J-1;
23 Sort_array(Tab,99); /* Sort it. */
29 void Sort_array(Tab,Last) int Tab[]; int Last; {
35 if (Tab[I] > Tab[I+1]) {
36 Temp = Tab[I];
37 Tab[I] = Tab[
[all...]
/openbsd-current/gnu/llvm/compiler-rt/lib/scudo/standalone/
H A Dstack_depot.h48 // into the Tab array, which stores an index into the Ring array where the
58 // The insert() function is potentially racy in its accesses to the Tab and
73 atomic_u32 Tab[TabSize] = {}; member in class:scudo::StackDepot
94 u32 RingPos = atomic_load_relaxed(&Tab[Pos]);
102 atomic_store_relaxed(&Tab[Pos], RingPos);
117 u32 RingPos = atomic_load_relaxed(&Tab[Pos]);
H A Dsize_class_map.h128 Tab[i] = computeClassId(Pos + Config::SizeDelta);
144 u8 Tab[getTableSize()] = {}; member in struct:scudo::TableSizeClassMap::SizeTable
155 Tab[I] = Bit;
171 CompressedValue |= u64(Tab[I] - Min) << (I * 2);
174 u8 Tab[ClassesSize] = {}; member in struct:scudo::TableSizeClassMap::LSBTable
201 return LTable.Tab[ClassId - 1];
215 return SzTable.Tab[scaledLog2(Size - 1, Config::MidSizeLog, S)];

Completed in 78 milliseconds