Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:BITS_PER_BYTE
(Results
1 - 9
of
9
) sorted by relevance
/test/xts/hats/hdf/display/composer/common/
H
A
D
display_test_utils.cpp
33
const uint8_t
BITS_PER_BYTE
= 8;
member
123
*(data + i) = (value >> ((sizeof(uint32_t) - i - 1) *
BITS_PER_BYTE
)) & 0xff;
in GetUint32()
162
*(data + i) = (value >> ((sizeof(uint32_t) - i - 1) *
BITS_PER_BYTE
)) & 0xff;
in SetUint32()
H
A
D
hdi_test_render_utils.cpp
26
*(data + i) = (value >> ((sizeof(uint32_t) - i - 1) *
BITS_PER_BYTE
)) & 0xff;
in SetUint32()
/test/xts/device_attest_lite/services/core/network/
H
A
D
attest_coap.c
58
*tkl = (uint8_t)((GetRandomNum() %
BITS_PER_BYTE
) + 1); // create a random digit, range: 1~8
in CoapCreateToken()
158
buf->rwBuffer[(*index)++] = (char)((contentLen - COAP_MESSAGE_DIFF_VALUE_TWO_BYTES) >>
BITS_PER_BYTE
);
in CoapEncodeExtensionMsg()
507
if (((uint32_t)((*p)[1] <<
BITS_PER_BYTE
) | (*p)[COAP_OPTION_EXTENSION_LEN]) >
in CoapParseOptionExtension()
512
*value = (uint16_t)((((*p)[1] <<
BITS_PER_BYTE
) | (*p)[COAP_OPTION_EXTENSION_LEN]) +
in CoapParseOptionExtension()
H
A
D
attest_network.c
869
size_t tempLength = (size_t)(((messageExtendedLength[0] & 0xFF) <<
BITS_PER_BYTE
) |
in DecodeExtendedLength()
/test/xts/device_attest/services/oem_adapter/include/
H
A
D
device_attest_oem_adapter.h
33
#define
BITS_PER_BYTE
8
macro
/test/xts/device_attest/services/oem_adapter/src/
H
A
D
device_attest_oem_adapter.c
66
result |= ((uint8_t)tokenWithFlag[TOKEN_SIZE + i]) << ((TOKEN_FLAG_SIZE - 1 - i) *
BITS_PER_BYTE
);
in GetTokenFlag()
74
flag[i] = (value >> (
BITS_PER_BYTE
* (TOKEN_FLAG_SIZE - 1 - i))) & 0xFF;
in SetTokenFlag()
/test/xts/hats/hdf/hdf_lite/display/
H
A
D
display_test.h
46
#define
BITS_PER_BYTE
8
macro
H
A
D
display_test.c
94
esurface->stride = SAMPLE_IMAGE_WIDTH * bpp /
BITS_PER_BYTE
;
in PicSourceSurfaceInit()
107
esurface->stride = g_displayTest.displayInfo.width * bpp /
BITS_PER_BYTE
;
in DestSurfaceInit()
/test/xts/device_attest_lite/services/core/include/network/
H
A
D
attest_coap.h
50
#define
BITS_PER_BYTE
8
macro
Completed in 7 milliseconds