Searched refs:lowValue (Results 1 - 7 of 7) sorted by last modified time

/haiku/src/add-ons/kernel/busses/random/ccp/
H A Dccp.cpp33 uint32 lowValue = read32(bus->registers + CCP_REG_TRNG); local
35 if (lowValue == 0 || highValue == 0)
37 gRandom->queue_randomness((uint64)lowValue | ((uint64)highValue << 32));
/haiku/src/libs/icon/flat_icon/
H A DFlatIconFormat.cpp34 uint8 lowValue; local
35 if (!buffer.Read(lowValue))
38 uint16 coordValue = (value << 8) | lowValue;
68 uint8 lowValue = value & 255; local
69 return buffer.Write(highValue) && buffer.Write(lowValue);
/haiku/src/kits/debugger/arch/x86_64/
H A DCpuStateX8664.cpp395 CpuStateX8664::SetXMMRegister(int32 index, const uint8* highValue, const uint8* lowValue) argument
400 memcpy(&fXMMRegisters[index - X86_64_REGISTER_XMM0].value[0], lowValue,
H A DCpuStateX8664.h146 const uint8* highValue, const uint8* lowValue);
/haiku/src/kits/debugger/user_interface/util/
H A DUiUtils.cpp445 int32 lowValue; local
460 status_t result = ParseRangeString(tempRange, lowValue, highValue);
465 if (fixedRange && (lowValue < lowerBound || highValue > upperBound))
468 result = _output.AddRange(lowValue, highValue);
/haiku/src/kits/debugger/util/
H A DRangeList.cpp24 RangeList::AddRange(int32 lowValue, int32 highValue) argument
26 if (lowValue > highValue)
33 if (lowValue < range->lowerBound) {
42 range->lowerBound = lowValue;
47 range->lowerBound = lowValue;
52 } else if (lowValue < range->upperBound) {
66 Range* range = new(std::nothrow) Range(lowValue, highValue);
/haiku/headers/private/debugger/util/
H A DRangeList.h24 Range(int32 lowValue, int32 highValue) argument
26 lowerBound(lowValue),
40 status_t AddRange(int32 lowValue, int32 highValue);

Completed in 72 milliseconds