Home
last modified time | relevance | path

Searched refs:uint8_t (Results 1 – 25 of 36) sorted by relevance

12

/hardware/ti/omap4xxx/security/tee_client_api/
Dschannel6_protocol.h165 uint8_t nMessageSize;
166 uint8_t nMessageType;
173 uint8_t nMessageSize;
174 uint8_t nMessageType;
182 uint8_t nMessageSize;
183 uint8_t nMessageType;
196 uint8_t nMessageSize;
197 uint8_t nMessageType;
206 uint8_t sLoginData[20]; /* Size depends on the login type. */
212 uint8_t nMessageSize;
[all …]
Dtee_client_api_linux_driver.c62 uint8_t sDriverDescription[65];
63 uint8_t sSecureWorldDescription[65];
668 uint8_t* pSignature = NULL; in TEEC_ReadSignatureFile()
/hardware/ti/omap4xxx/libI420colorconvert/
DColorConvert.cpp28 const uint8_t *pSrc_y = (const uint8_t *)srcBits + in convertDecoderOutputToI420()
30 const uint8_t *pSrc_uv = (const uint8_t *)pSrc_y + in convertDecoderOutputToI420()
38 uint8_t *pDst_y = (uint8_t *)dstBits; in convertDecoderOutputToI420()
39 uint8_t *pDst_u = pDst_y + dst_y_size; in convertDecoderOutputToI420()
40 uint8_t *pDst_v = pDst_u + dst_uv_size; in convertDecoderOutputToI420()
69 uint8_t *pSrc_y = (uint8_t*) srcBits; in convertI420ToEncoderInput()
70 uint8_t *pDst_y = (uint8_t*) dstBits; in convertI420ToEncoderInput()
76 uint8_t* pSrc_u = (uint8_t*)srcBits + (srcWidth * srcHeight); in convertI420ToEncoderInput()
77 uint8_t* pSrc_v = (uint8_t*)pSrc_u + (srcWidth / 2) * (srcHeight / 2); in convertI420ToEncoderInput()
78 uint8_t* pDst_uv = (uint8_t*)dstBits + dstWidth * dstHeight; in convertI420ToEncoderInput()
/hardware/ti/omap4xxx/security/tf_daemon/
Dlib_manifest2.c33 #define CHAR_CR (uint8_t)0x0D
34 #define CHAR_LF (uint8_t)0x0A
35 #define CHAR_TAB (uint8_t)0x09
69 static bool static_checkCharacter(uint8_t x, uint32_t nType) in static_checkCharacter()
72 if (x >= (uint8_t)'a' && x <= (uint8_t)'z') in static_checkCharacter()
76 if (x >=(uint8_t)'A' && x <= (uint8_t)'Z') in static_checkCharacter()
80 if (x >= (uint8_t)'0' && x <= (uint8_t)'9') in static_checkCharacter()
89 if (x == (uint8_t)'_' || x == (uint8_t)'.' || x == (uint8_t)'-') in static_checkCharacter()
98 if (x == (uint8_t)' ') in static_checkCharacter()
106 uint8_t* pName1, in static_sectionNameEqualCaseInsensitive()
[all …]
Dlib_manifest2.h68 uint8_t* pManifestContent;
95 OUT uint8_t** ppName,
97 OUT uint8_t** ppValue,
Dsmc_properties_parser.c243 static S_RESULT SMCPropYacc(uint8_t* pBuffer, uint32_t nBufferLength, in SMCPropYacc()
253 uint8_t* pName; in SMCPropYacc()
255 uint8_t* pValue; in SMCPropYacc()
464 if (fread(pBuff, sizeof(uint8_t), (size_t)nFilesize, pFile) != (size_t)nFilesize) in static_readFile()
/hardware/ti/omap4xxx/camera/
DEncoder_libjpeg.cpp62 libjpeg_destination_mgr(uint8_t* input, int size);
64 uint8_t* buf;
90 libjpeg_destination_mgr::libjpeg_destination_mgr(uint8_t* input, int size) { in libjpeg_destination_mgr()
102 static void nv21_to_yuv(uint8_t* dst, uint8_t* y, uint8_t* uv, int width) { in nv21_to_yuv()
108 uint8_t y0 = y[0]; in nv21_to_yuv()
109 uint8_t v0 = uv[0]; in nv21_to_yuv()
110 uint8_t u0 = *(uv+1); in nv21_to_yuv()
120 static void uyvy_to_yuv(uint8_t* dst, uint32_t* src, int width) { in uyvy_to_yuv()
132 uint8_t u0 = (src[0] >> 0) & 0xFF; in uyvy_to_yuv()
133 uint8_t y0 = (src[0] >> 8) & 0xFF; in uyvy_to_yuv()
[all …]
DAppCallbackNotifier.cpp56 uint8_t* src = NULL; in EncoderDoneCb()
480 bufferSrc_UV = ( uint16_t * ) ((uint8_t*)y_uv[1] + (stride/2)*yOff + xOff); in copy2Dto1D()
486 bufferDst_UV = (uint16_t *) (((uint8_t*)dst)+row*height); in copy2Dto1D()
539 bufferDst_V = (uint16_t *) (((uint8_t*)dst)+row*height); in copy2Dto1D()
540 bufferDst_U = (uint16_t *) (((uint8_t*)dst)+row*height+row*height/4); in copy2Dto1D()
840 main_jpeg->src = (uint8_t*) frame->mBuffer; in notifyFrame()
842 main_jpeg->dst = (uint8_t*) buf; in notifyFrame()
868 tn_jpeg->src = (uint8_t*) mPreviewBufs[current_snapshot]; in notifyFrame()
870 tn_jpeg->dst = (uint8_t*) malloc(tn_jpeg->src_size); in notifyFrame()
/hardware/ti/omap4xxx/security/smc_pa_ctrl/
Dsmc_pa_ctrl_linux.c62 uint8_t* pPABuffer; /* PA buffer */
65 uint8_t* pConfBuffer; /* Configuration buffer, zero-terminated */
69 static uint8_t* readLocalFile(const char* pFileName, uint32_t* pnBufferSize, bool bIsString) in readLocalFile()
71 uint8_t* pBuffer = NULL; in readLocalFile()
95 pBuffer = (uint8_t*)malloc(nBytesToAllocate); in readLocalFile()
/hardware/ril/mock-ril/src/cpp/
Dctrl_server.cpp78 uint8_t *bytes = (uint8_t *)data; in WriteAll()
98 uint8_t *bytes = (uint8_t *)data; in ReadAll()
127 uint8_t *msg_header_raw = (uint8_t *)alloca(len_msg_header); in ReadMessage()
164 uint8_t *msg_header_raw = (uint8_t *)alloca(len_msg_header); in WriteMessage()
/hardware/msm7k/libcamera/
Dcamera_ifc.h148 uint8_t *thumbnail_image;
158 uint8_t *buffer;
161 uint8_t *Y_Addr;
162 uint8_t *CbCr_Addr;
195 uint8_t *buffer;
DQualcommCameraHardware.cpp85 extern uint8_t* (*cam_mmap_preview)(uint32_t size,
88 extern uint8_t* (*cam_mmap_snapshot)(uint32_t size,
146 uint8_t* (**LINK_cam_mmap_preview)(
156 uint8_t* (**LINK_cam_mmap_snapshot)(
279 static uint8_t* malloc_preview(uint32_t, uint32_t *, uint32_t);
280 static uint8_t* malloc_raw(uint32_t, uint32_t *, uint32_t);
1165 uint8_t *base = (uint8_t *)mPreviewHeap->mHeap->base(); in get_preview_mem()
1196 uint8_t *base = (uint8_t *)mRawHeap->mHeap->base(); in get_raw_mem()
1409 camera_handle.mem.encBuf[cnt].buffer = (uint8_t *) in receivePostLpmRawPicture()
1436 uint8_t *base = (uint8_t *)mJpegHeap->mHeap->base(); in receiveJpegPictureFragment()
[all …]
/hardware/msm7k/libgralloc-qsd8k/tests/
Dpmemalloc_test.cpp323 uint8_t buf[0x300 + 0x100]; // Create a buffer to get memzero'd in TEST()
335 ASSERT_EQ(uint8_t(0), buf[i]); in TEST()
350 uint8_t buf[0x300 + 0x100]; // Create a buffer to get memzero'd in TEST()
389 uint8_t buf[0x300 + 0x100]; // Create a buffer to get memzero'd in TEST()
422 uint8_t buf[0x300 + 0x100]; // Create a buffer to get memzero'd in TEST()
456 uint8_t buf[0x300 + 0x100]; // Create a buffer to get memzero'd in TEST()
491 uint8_t buf[0x100]; // Create a buffer to get memzero'd in TEST()
514 uint8_t buf[0x100]; // Create a buffer to get memzero'd in TEST()
/hardware/libhardware/include/hardware/
Daudio_effect.h54 uint8_t node[6];
639 uint8_t* u8; // pointer to unsigned 8 bit data at start of buffer
673 uint8_t format; // Audio format (see see audio_format_t in audio.h)
674 uint8_t accessMode; // read/write or accumulate in buffer (effect_buffer_access_e)
Dgps.h314 uint8_t mac[6];
661 void (*ni_message) (uint8_t *msg, size_t len);
Dsensors.h327 uint8_t reserved[3];
/hardware/ti/omap4xxx/security/tf_sdk/include/
Ds_type.h73 typedef unsigned char uint8_t; typedef
124 uint8_t clock_seq_and_node[8];
Dsst.h125 const uint8_t* pBuffer,
129 uint8_t* pBuffer,
/hardware/ti/omap4xxx/camera/inc/
DEncoder_libjpeg.h91 uint8_t* src;
93 uint8_t* dst;
/hardware/invensense/mlsdk/platform/include/
Dstdint_invensense.h37 typedef unsigned char uint8_t; typedef
/hardware/ril/libril/
Dril.cpp284 void nullParcelReleaseFunction (const uint8_t* data, size_t dataSize, in nullParcelReleaseFunction()
331 p.setData((uint8_t *) buffer, buflen); in processCommandBuffer()
857 uint8_t ut; in dispatchCdmaSms()
868 rcsm.bIsServicePresent = (uint8_t) ut; in dispatchCdmaSms()
886 rcsm.sAddress.number_of_digits= (uint8_t) ut; in dispatchCdmaSms()
891 rcsm.sAddress.digits[digitCount] = (uint8_t) ut; in dispatchCdmaSms()
898 rcsm.sSubAddress.odd = (uint8_t) ut; in dispatchCdmaSms()
901 rcsm.sSubAddress.number_of_digits = (uint8_t) ut; in dispatchCdmaSms()
906 rcsm.sSubAddress.digits[digitCount] = (uint8_t) ut; in dispatchCdmaSms()
915 rcsm.aBearerData[digitCount] = (uint8_t) ut; in dispatchCdmaSms()
[all …]
/hardware/ti/omap4xxx/domx/mm_osal/inc/
Dtimm_osal_types.h76 typedef uint8_t TIMM_OSAL_U8; /*UINT8 */
/hardware/msm7k/libaudio-qdsp5v2/
DAudioHardware.cpp220 const uint8_t* p = static_cast<const uint8_t*>(buffer); in write()
/hardware/msm7k/librpc/
Drpc.c148 XDR_SEND_BYTES(xdr, (uint8_t *)auth->oa_base, auth->oa_length))); in xdr_send_auth()
/hardware/ti/omap4xxx/camera/V4LCameraAdapter/
DV4LCameraAdapter.cpp528 uint8_t* ptr = (uint8_t*) mPreviewBufs.keyAt(index); in previewThread()

12