HomeSort by relevance Sort by last modified time
    Searched refs:uint16 (Results 101 - 125 of 1396) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/tensorflow/tensorflow/core/lib/wav/
wav_io.h 55 uint32* sample_count, uint16* channel_count,
  /frameworks/av/media/libstagefright/codecs/mp3dec/include/
pvmp3_audio_type_defs.h 69 typedef uint16_t uint16; typedef
  /frameworks/av/media/libstagefright/codecs/mp3dec/src/
pvmp3_getbits.h 90 uint16 getUpTo9bits(tmp3Bits *pMainData,
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/
bcm_mpool_pub.h 58 #include <typedefs.h> /* needed for uint16 */
106 uint16 nobj; /* Total number of objects in this pool */
107 uint16 num_alloc; /* Number of objects currently allocated */
108 uint16 high_water; /* Max number of allocated objects. */
109 uint16 failed_alloc; /* Failed allocations. */
  /hardware/qcom/media/msm8974/mm-video-legacy/vidc/vdec/inc/
qtypes.h 68 typedef unsigned short uint16; /* Unsigned 16 bit value */ typedef
  /hardware/qcom/media/msm8974/mm-video-v4l2/vidc/vdec/inc/
qtypes.h 68 typedef unsigned short uint16; /* Unsigned 16 bit value */ typedef
  /hardware/qcom/media/msm8996/mm-video-v4l2/vidc/vdec/inc/
qtypes.h 68 typedef unsigned short uint16; /* Unsigned 16 bit value */ typedef
  /hardware/qcom/media/msm8998/mm-video-v4l2/vidc/vdec/inc/
qtypes.h 68 typedef unsigned short uint16; /* Unsigned 16 bit value */ typedef
  /external/pdfium/third_party/libtiff/
tif_dir.c 65 void _TIFFsetShortArray(uint16** wpp, uint16* wp, uint32 n)
66 { setByteArray((void**) wpp, (void*) wp, n, sizeof (uint16)); }
98 uint16* va;
101 *v = (uint16) va_arg(ap, uint16_vap);
102 if ((uint16) *v > td->td_samplesperpixel)
104 va = va_arg(ap, uint16*);
121 td->td_extrasamples = (uint16) *v;
136 uint16 i = td->td_samplesperpixel;
202 td->td_bitspersample = (uint16) va_arg(ap, uint16_vap)
    [all...]
  /external/dng_sdk/source/
dng_reference.h 34 void RefSwapBytes16 (uint16 *dPtr,
51 void RefSetArea16 (uint16 *dPtr,
52 uint16 value,
83 void RefCopyArea16 (const uint16 *sPtr,
84 uint16 *dPtr,
108 uint16 *dPtr,
143 void RefCopyArea16_S16 (const uint16 *sPtr,
155 void RefCopyArea16_32 (const uint16 *sPtr,
180 void RefCopyArea16_R32 (const uint16 *sPtr,
220 uint16 *dPtr
    [all...]
  /external/neven/Embedded/common/src/b_BasicEm/
UInt16Arr.c 84 bbs_memcpy16( ptrA->arrPtrE, srcPtrA->arrPtrE, srcPtrA->sizeE * bbs_SIZEOF16( uint16 ) );
94 const uint16* ptr1L = ptrA->arrPtrE;
95 const uint16* ptr2L = srcPtrA->arrPtrE;
120 const uint16* ptrL = ptrA->arrPtrE + startIndexA;
134 return sizeA * bbs_SIZEOF16( uint16 ) + bbs_MEM_BLOCK_OVERHD;
176 ptrA->arrPtrE = bbs_MemSeg_alloc( cpA, mspA, sizeA * bbs_SIZEOF16( uint16 ) );
198 ptrA->sizeE * bbs_SIZEOF16( uint16 );
205 uint16* memPtrA )
218 const uint16* memPtrA,
230 bbs_ERR0( bbs_ERR_CORRUPT_DATA, "uint32 bbs_UInt16Arr_memRead( const struct bbs_UInt16Arr*, const uint16* ):\n
    [all...]
  /external/vulkan-validation-layers/libs/glm/gtx/
bit.hpp 129 GLM_FUNC_DECL uint16 bitfieldInterleave(uint8 x, uint8 y);
143 GLM_FUNC_DECL uint32 bitfieldInterleave(uint16 x, uint16 y);
185 GLM_FUNC_DECL uint64 bitfieldInterleave(uint16 x, uint16 y, uint16 z);
227 GLM_FUNC_DECL uint64 bitfieldInterleave(uint16 x, uint16 y, uint16 z, uint16 w)
    [all...]
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/text/unicode/norm/
trie.go 10 value uint16 // header: value:stride
16 offset []uint16
38 func (t *sparseBlocks) lookup(n uint32, b byte) uint16 {
42 hi := lo + uint16(header.lo)
47 return r.value + uint16(b-r.lo)*header.value
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/text/unicode/norm/
trie.go 10 value uint16 // header: value:stride
16 offset []uint16
38 func (t *sparseBlocks) lookup(n uint32, b byte) uint16 {
42 hi := lo + uint16(header.lo)
47 return r.value + uint16(b-r.lo)*header.value
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/libs/glm/gtx/
bit.hpp 129 GLM_FUNC_DECL uint16 bitfieldInterleave(uint8 x, uint8 y);
143 GLM_FUNC_DECL uint32 bitfieldInterleave(uint16 x, uint16 y);
185 GLM_FUNC_DECL uint64 bitfieldInterleave(uint16 x, uint16 y, uint16 z);
227 GLM_FUNC_DECL uint64 bitfieldInterleave(uint16 x, uint16 y, uint16 z, uint16 w)
    [all...]
  /external/protobuf/src/google/protobuf/stubs/
port.h 108 typedef unsigned __int16 uint16; typedef in namespace:google::protobuf
118 typedef unsigned short uint16; typedef in namespace:google::protobuf
233 #define GOOGLE_UNALIGNED_LOAD16(_p) (*reinterpret_cast<const uint16 *>(_p))
237 #define GOOGLE_UNALIGNED_STORE16(_p, _val) (*reinterpret_cast<uint16 *>(_p) = (_val))
242 inline uint16 GOOGLE_UNALIGNED_LOAD16(const void *p) {
243 uint16 t;
260 inline void GOOGLE_UNALIGNED_STORE16(void *p, uint16 v) {
295 static inline uint16 bswap_16(uint16 x) {
296 return static_cast<uint16>(((x & 0xFF) << 8) | ((x & 0xFF00) >> 8))
    [all...]
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/net/lif/
binary.go 21 Uint16([]byte) uint16
24 PutUint16([]byte, uint16)
31 func (binaryLittleEndian) Uint16(b []byte) uint16 {
33 return uint16(b[0]) | uint16(b[1])<<8
36 func (binaryLittleEndian) PutUint16(b []byte, v uint16) {
75 func (binaryBigEndian) Uint16(b []byte) uint16 {
    [all...]
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/net/route/
binary.go 21 Uint16([]byte) uint16
23 PutUint16([]byte, uint16)
30 func (binaryLittleEndian) Uint16(b []byte) uint16 {
32 return uint16(b[0]) | uint16(b[1])<<8
35 func (binaryLittleEndian) PutUint16(b []byte, v uint16) {
62 func (binaryBigEndian) Uint16(b []byte) uint16 {
    [all...]
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/net/lif/
binary.go 21 Uint16([]byte) uint16
24 PutUint16([]byte, uint16)
31 func (binaryLittleEndian) Uint16(b []byte) uint16 {
33 return uint16(b[0]) | uint16(b[1])<<8
36 func (binaryLittleEndian) PutUint16(b []byte, v uint16) {
75 func (binaryBigEndian) Uint16(b []byte) uint16 {
    [all...]
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/net/route/
binary.go 21 Uint16([]byte) uint16
23 PutUint16([]byte, uint16)
30 func (binaryLittleEndian) Uint16(b []byte) uint16 {
32 return uint16(b[0]) | uint16(b[1])<<8
35 func (binaryLittleEndian) PutUint16(b []byte, v uint16) {
62 func (binaryBigEndian) Uint16(b []byte) uint16 {
    [all...]
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/stubs/
port.h 108 typedef unsigned __int16 uint16; typedef in namespace:google::protobuf
118 typedef unsigned short uint16; typedef in namespace:google::protobuf
233 #define GOOGLE_UNALIGNED_LOAD16(_p) (*reinterpret_cast<const uint16 *>(_p))
237 #define GOOGLE_UNALIGNED_STORE16(_p, _val) (*reinterpret_cast<uint16 *>(_p) = (_val))
242 inline uint16 GOOGLE_UNALIGNED_LOAD16(const void *p) {
243 uint16 t;
260 inline void GOOGLE_UNALIGNED_STORE16(void *p, uint16 v) {
293 static inline uint16 bswap_16(uint16 x) {
294 return static_cast<uint16>(((x & 0xFF) << 8) | ((x & 0xFF00) >> 8))
    [all...]
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/proto/
bt_amp_hci.h 30 uint16 opcode;
136 uint16 bredr;
212 uint16 opcode;
217 uint16 opcode;
222 uint16 handle;
233 uint16 len;
245 uint16 PAL_cap;
246 uint16 AMP_ASSOC_len;
253 uint16 llh;
260 uint16 llh
    [all...]
  /prebuilts/go/darwin-x86/src/syscall/
ztypes_solaris_amd64.go 114 Reclen uint16
120 Family uint16
121 Port uint16
127 Family uint16
128 Port uint16
136 Family uint16
141 Family uint16
142 Index uint16
151 Family uint16
243 Msglen uint16
    [all...]
  /prebuilts/go/linux-x86/src/syscall/
ztypes_solaris_amd64.go 114 Reclen uint16
120 Family uint16
121 Port uint16
127 Family uint16
128 Port uint16
136 Family uint16
141 Family uint16
142 Index uint16
151 Family uint16
243 Msglen uint16
    [all...]
  /prebuilts/go/darwin-x86/src/runtime/
vdso_linux_386.go 15 st_shndx uint16
19 vd_version uint16 /* Version revision */
20 vd_flags uint16 /* Version information */
21 vd_ndx uint16 /* Version Index */
22 vd_cnt uint16 /* Number of associated aux entries */
30 e_type uint16 /* Object file type */
31 e_machine uint16 /* Architecture */
37 e_ehsize uint16 /* ELF header size in bytes */
38 e_phentsize uint16 /* Program header table entry size */
39 e_phnum uint16 /* Program header table entry count *
    [all...]

Completed in 624 milliseconds

1 2 3 45 6 7 8 91011>>