OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:byteVal
(Results
1 - 2
of
2
) sorted by null
/external/icu/icu4c/source/io/
ufmt_cmn.c
120
uint8_t
byteVal
= ptrIdx[i];
121
uint16_t firstNibble = (uint16_t)(
byteVal
>>4);
122
uint16_t secondNibble = (uint16_t)(
byteVal
&0xF);
/frameworks/av/services/camera/libcameraservice/tests/
CameraProviderManagerTest.cpp
302
uint8_t
byteVal
= 10;
304
ASSERT_EQ(OK, metadata.update(tagId, &
byteVal
, 1));
323
ASSERT_EQ(OK, metadataCopy.update(tagId, &
byteVal
, 1));
329
ASSERT_EQ(
byteVal
, entry.data.u8[0]);
Completed in 59 milliseconds