HomeSort by relevance Sort by last modified time
    Searched full:_bytes (Results 1 - 25 of 30) sorted by null

1 2

  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/
bcmendian.h 127 uint8 *_bytes = (uint8 *)(bytes); \
128 _bytes[0] = _val & 0xff; \
129 _bytes[1] = _val >> 8; \
134 uint8 *_bytes = (uint8 *)(bytes); \
135 _bytes[0] = _val & 0xff; \
136 _bytes[1] = (_val >> 8) & 0xff; \
137 _bytes[2] = (_val >> 16) & 0xff; \
138 _bytes[3] = _val >> 24; \
143 uint8 *_bytes = (uint8 *)(bytes); \
144 _bytes[0] = _val >> 8;
    [all...]
  /external/autotest/client/site_tests/platform_AesThroughput/
platform_AesThroughput.py 46 keys = ['16_bytes', '64_bytes', '256_bytes', '1024_bytes', '8192_bytes']
  /bionic/libc/malloc_debug/
README.md 51 ### front\_guard[=SIZE\_BYTES]
62 If SIZE\_BYTES is present, it indicates the number of bytes in the guard.
63 The default is 32 bytes, the max bytes is 16384. SIZE\_BYTES will be
77 ### rear\_guard[=SIZE\_BYTES]
85 If SIZE\_BYTES is present, it indicates the number of bytes in the guard.
97 ### guard[=SIZE\_BYTES]
100 If SIZE\_BYTES is present, it indicates the number of bytes in both guards.
167 ### fill\_on\_alloc[=MAX\_FILLED\_BYTES]
172 If MAX\_FILLED\_BYTES is present, it will only fill up to the specified number
175 ### fill\_on\_free[=MAX\_FILLED\_BYTES]
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/json/
decoder.py 18 _BYTES = '7FF80000000000007FF0000000000000'.decode('hex')
20 _BYTES = _BYTES[:8][::-1] + _BYTES[8:][::-1]
21 nan, inf = struct.unpack('dd', _BYTES)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/json/
decoder.py 18 _BYTES = '7FF80000000000007FF0000000000000'.decode('hex')
20 _BYTES = _BYTES[:8][::-1] + _BYTES[8:][::-1]
21 nan, inf = struct.unpack('dd', _BYTES)
  /prebuilts/gdb/darwin-x86/lib/python2.7/json/
decoder.py 18 _BYTES = '7FF80000000000007FF0000000000000'.decode('hex')
20 _BYTES = _BYTES[:8][::-1] + _BYTES[8:][::-1]
21 nan, inf = struct.unpack('dd', _BYTES)
  /prebuilts/gdb/linux-x86/lib/python2.7/json/
decoder.py 18 _BYTES = '7FF80000000000007FF0000000000000'.decode('hex')
20 _BYTES = _BYTES[:8][::-1] + _BYTES[8:][::-1]
21 nan, inf = struct.unpack('dd', _BYTES)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/json/
decoder.py 18 _BYTES = '7FF80000000000007FF0000000000000'.decode('hex')
20 _BYTES = _BYTES[:8][::-1] + _BYTES[8:][::-1]
21 nan, inf = struct.unpack('dd', _BYTES)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/json/
decoder.py 18 _BYTES = '7FF80000000000007FF0000000000000'.decode('hex')
20 _BYTES = _BYTES[:8][::-1] + _BYTES[8:][::-1]
21 nan, inf = struct.unpack('dd', _BYTES)
  /tools/test/connectivity/acts/framework/acts/controllers/
monsoon.py 306 _bytes = self._ReadPacket()
307 if not _bytes:
309 if len(_bytes) < 4 + 8 + 1 or _bytes[0] < 0x20 or _bytes[0] > 0x2F:
311 _bytes[0], len(_bytes))
314 seq, _type, x, y = struct.unpack("BBBB", _bytes[:4])
316 struct.unpack(">hhhh", _bytes[x:x + 8])
318 len(_bytes) - 8, 8
    [all...]
  /device/google/marlin/camera/QCamera2/stack/mm-jpeg-interface/src/
mm_jpeg_exif.c 89 p_info_data[numOfEntries].tag_entry.data._bytes = values;
220 p_exif_data->tag_entry.data._bytes != NULL) {
221 free(p_exif_data->tag_entry.data._bytes);
222 p_exif_data->tag_entry.data._bytes = NULL;
  /hardware/qcom/camera/msm8998/QCamera2/stack/mm-jpeg-interface/src/
mm_jpeg_exif.c 89 p_info_data[numOfEntries].tag_entry.data._bytes = values;
220 p_exif_data->tag_entry.data._bytes != NULL) {
221 free(p_exif_data->tag_entry.data._bytes);
222 p_exif_data->tag_entry.data._bytes = NULL;
  /external/mesa3d/src/mapi/glapi/gen/
glX_proto_recv.py 333 x.append( [1, ['BYTE', 'UNSIGNED_BYTE', '2_BYTES', '3_BYTES', '4_BYTES']] )
  /device/google/marlin/camera/
QCamera_Intf.h 757 uint8_t *_bytes; member in union:__anon2620::__anon2621
  /hardware/qcom/camera/msm8998/
QCamera_Intf.h 757 uint8_t *_bytes; member in union:__anon49462::__anon49463
  /external/tensorflow/tensorflow/core/profiler/internal/
tfprof_node.h 298 return exec->second.type##_bytes(); \
303 bytes += exec.second.type##_bytes(); \
  /device/google/marlin/camera/mm-image-codec/qexif/
qexif.h 98 * array and is accessible by data._bytes. In case of EXIF_ASCII, it
112 uint8_t *_bytes; // EXIF_BYTE (count > 1) member in union:__anon2667::__anon2668
    [all...]
  /hardware/qcom/camera/msm8998/mm-image-codec/qexif/
qexif.h 98 * array and is accessible by data._bytes. In case of EXIF_ASCII, it
112 uint8_t *_bytes; // EXIF_BYTE (count > 1) member in union:__anon49509::__anon49510
    [all...]
  /external/python/cpython3/Tools/parser/
unparse.py 332 def _Bytes(self, t):
  /external/valgrind/VEX/priv/
main_util.c 172 "Increase N_{TEMPORARY,PERMANENT}_BYTES and recompile.");
  /external/protobuf/python/google/protobuf/internal/
reflection_test.py 77 self._bytes = bytes
81 result, self._pos = decoder._DecodeVarint(self._bytes, self._pos)
98 result = struct.unpack("<f", self._bytes[self._pos:self._pos+4])[0]
103 result = struct.unpack("<d", self._bytes[self._pos:self._pos+8])[0]
108 return self._pos == len(self._bytes)
    [all...]
  /external/scapy/scapy/
fields.py 865 _bytes = struct.unpack('!%dB' % nb_bytes , w)
869 b |= int(_bytes[c]) << (nb_bytes-c-1)*8
    [all...]
  /device/google/marlin/camera/QCamera2/HAL/
QCameraPostProc.cpp     [all...]
  /device/google/marlin/camera/QCamera2/HAL3/
QCamera3PostProc.cpp     [all...]
  /hardware/qcom/camera/msm8998/QCamera2/HAL3/
QCamera3PostProc.cpp     [all...]

Completed in 945 milliseconds

1 2