Home
last modified time | relevance | path

Searched refs:lastBitIndex (Results 1 – 2 of 2) sorted by relevance

/external/angle/src/common/
Dmathutil.h1137 unsigned long lastBitIndex = 0ul; in ScanReverse() local
1138 unsigned char ret = _BitScanReverse(&lastBitIndex, bits); in ScanReverse()
1140 return lastBitIndex; in ScanReverse()
1146 unsigned long lastBitIndex = 0ul; in ScanReverse() local
1148 unsigned char ret = _BitScanReverse64(&lastBitIndex, bits); in ScanReverse()
1153 ret = _BitScanReverse(&lastBitIndex, static_cast<uint32_t>(bits)); in ScanReverse()
1157 ret = _BitScanReverse(&lastBitIndex, static_cast<uint32_t>(bits >> 32)); in ScanReverse()
1158 lastBitIndex += 32ul; in ScanReverse()
1162 return lastBitIndex; in ScanReverse()
/external/bcc/src/cc/frontends/p4/compiler/
DebpfParser.py109 lastBitIndex = startBit + width + alignment - 1
111 lastWordIndex = lastBitIndex / 8