HomeSort by: relevance | last modified time | path
    Searched defs:Bit (Results 1 - 2 of 2) sorted by relevancy

  /src/sys/external/bsd/acpica/dist/utilities/
utownerid.c 237 * Found a free ID. The actual ID is the bit index plus one,
247 * Construct encoded ID from the index and bit position
249 * Note: Last [j].k (bit 4095) is never used and is marked
304 UINT32 Bit;
337 Bit = (UINT32) 1 << ACPI_MOD_32 (OwnerId);
341 if (AcpiGbl_OwnerIdMask[Index] & Bit)
343 AcpiGbl_OwnerIdMask[Index] ^= Bit;
  /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
FuzzerTracePC.h 239 unsigned Bit = 0;
240 /**/ if (Counter >= 128) Bit = 7;
241 else if (Counter >= 32) Bit = 6;
242 else if (Counter >= 16) Bit = 5;
243 else if (Counter >= 8) Bit = 4;
244 else if (Counter >= 4) Bit = 3;
245 else if (Counter >= 3) Bit = 2;
246 else if (Counter >= 2) Bit = 1;
247 return Bit;

Completed in 14 milliseconds