| /OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/ipc_server/ |
| H A D | command_process.cpp | 13 dataReply->dataSize = 0; in ProcessCommand() 16 dataReply->dataSize = sizeof(Uapi_ExpSwAttr_t); in ProcessCommand() 17 dataReply->data = (char*)malloc(dataReply->dataSize); in ProcessCommand() 23 dataReply->dataSize = 0; in ProcessCommand() 26 dataReply->dataSize = sizeof(Uapi_LinAeRouteAttr_t); in ProcessCommand() 27 dataReply->data = (char*)malloc(dataReply->dataSize); in ProcessCommand() 33 dataReply->dataSize = 0; in ProcessCommand() 36 dataReply->dataSize = sizeof(Uapi_HdrAeRouteAttr_t); in ProcessCommand() 37 dataReply->data = (char*)malloc(dataReply->dataSize); in ProcessCommand() 41 dataReply->dataSize = sizeof(Uapi_ExpQueryInfo_t); in ProcessCommand() [all …]
|
| H A D | MessageParser.cpp | 113 opkt->data = (char *)malloc(temp->dataSize + 1); in clonePacket() 120 memcpy(opkt->data, temp->data, temp->dataSize); in clonePacket() 121 opkt->data[temp->dataSize] = '\0'; in clonePacket() 364 memcpy((void *)&(receivedData.dataSize), receivedPacket + offset, in findValidSection2() 370 offset += receivedData.dataSize; in findValidSection2() 378 unsigned int dataHash = MurMurHash(receivedData.data, receivedData.dataSize); in findValidSection2()
|
| H A D | socket_server.cpp | 74 sizeof(RkAiqSocketPacket) + dataReply.dataSize - sizeof(char *); in ProcessText() 90 memcpy(dataToSend + offset, (void *)&dataReply.dataSize, in ProcessText() 91 sizeof(dataReply.dataSize)); in ProcessText() 92 offset += sizeof(dataReply.dataSize); in ProcessText() 93 memcpy(dataToSend + offset, dataReply.data, dataReply.dataSize); in ProcessText() 94 offset += dataReply.dataSize; in ProcessText() 191 aiq_data->dataSize = packet_size; in rkaiq_packet_parse_old()
|
| H A D | MessageParser.hpp | 50 unsigned int dataSize; member
|
| /OK3568_Linux_fs/external/xserver/Xext/ |
| H A D | hashtable.c | 17 int dataSize; member 37 int dataSize, in ht_create() argument 51 ht->dataSize = dataSize; in ht_create() 137 elem->data = calloc(1, ht->dataSize); in ht_add() 138 if (ht->dataSize && !elem->data) { in ht_add()
|
| H A D | hashtable.h | 55 int dataSize,
|
| /OK3568_Linux_fs/buildroot/dl/rtmpdump/git/ |
| H A D | rtmpsuck.c | 637 …uint32_t dataSize = AMF_DecodeInt24(packetBody + pos + 1); // size without header (11) and without… in WriteStream() local 647 if (pos + 11 + dataSize + 4 > nPacketLen) in WriteStream() 649 if (pos + 11 + dataSize > nPacketLen) in WriteStream() 653 dataSize); in WriteStream() 660 prevTagSize = dataSize + 11; in WriteStream() 661 AMF_EncodeInt32(ptr + pos + 11 + dataSize, pend, prevTagSize); in WriteStream() 668 AMF_DecodeInt32(packetBody + pos + 11 + dataSize); in WriteStream() 673 (unsigned char) packetBody[pos], dataSize, prevTagSize, in WriteStream() 677 if (prevTagSize != (dataSize + 11)) in WriteStream() 682 dataSize + 11); in WriteStream() [all …]
|
| H A D | rtmpdump.c | 206 uint32_t dataSize = AMF_DecodeInt24(hbuf + 1); in OpenResumeFile() local 210 if (dataSize > bufferSize) in OpenResumeFile() 213 bufferSize = dataSize + 4095; in OpenResumeFile() 222 if (fread(buffer, 1, dataSize, *file) != dataSize) in OpenResumeFile() 226 int nRes = AMF_Decode(&metaObj, buffer, dataSize, FALSE); in OpenResumeFile() 241 *nMetaHeaderSize = dataSize; in OpenResumeFile() 262 pos += (dataSize + 11 + 4); in OpenResumeFile()
|
| /OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/include/ipc_server/ |
| H A D | socket_server.h | 109 #define CHECK_PARAM_SIZE(parmaStruct, dataSize) \ argument 111 dataSize); \ 112 if (sizeof(parmaStruct) != dataSize) { \
|
| /OK3568_Linux_fs/kernel/drivers/net/usb/GobiNet/ |
| H A D | QMIDevice.c | 583 u16 dataSize; in ReadCallback() local 629 dataSize = pReadURB->actual_length; in ReadCallback() 631 PrintHex( pData, dataSize ); in ReadCallback() 634 if (dataSize < (le16_to_cpu(get_unaligned((u16*)(pData + 1))) + 1)) { in ReadCallback() 635 dataSize = (le16_to_cpu(get_unaligned((u16*)(pData + 1))) + 1); in ReadCallback() 636 …memset(pReadURB->transfer_buffer + pReadURB->actual_length, 0x00, dataSize - pReadURB->actual_leng… in ReadCallback() 637 INFO( "Read %d / %d bytes\n", pReadURB->actual_length, dataSize); in ReadCallback() 643 dataSize ); in ReadCallback() 657 if (dataSize < result + 3) in ReadCallback() 690 pDataCopy = kmalloc( dataSize, GFP_ATOMIC ); in ReadCallback() [all …]
|
| H A D | QMIDevice.h | 199 u16 dataSize );
|
| /OK3568_Linux_fs/u-boot/fs/yaffs2/ |
| H A D | yaffs_nandif.h | 25 unsigned dataSize; member
|
| H A D | yaffs_nandif.c | 233 param->total_bytes_per_chunk = geometry->dataSize; in yaffs_add_dev_from_geometry()
|
| /OK3568_Linux_fs/buildroot/dl/rtmpdump/git/librtmp/ |
| H A D | rtmp.c | 1347 …uint32_t dataSize = AMF_DecodeInt24(packet->m_body + pos + 1); /* size without header (11) and pre… in RTMP_ClientPacket() local 1349 if (pos + 11 + dataSize + 4 > packet->m_nBodySize) in RTMP_ClientPacket() 1356 HandleMetadata(r, packet->m_body + pos + 11, dataSize); in RTMP_ClientPacket() 1363 pos += (11 + dataSize + 4); in RTMP_ClientPacket() 4641 uint32_t dataSize = in Read_1_Packet() local 4649 packetBody[pos], dataSize, ts); in Read_1_Packet() 4662 if (r->m_read.nInitialFrameSize != dataSize in Read_1_Packet() 4678 if (pos + 11 + dataSize + 4 > nPacketLen) in Read_1_Packet() 4685 packetBody += (pos + 11 + dataSize + 4); in Read_1_Packet() 4686 nPacketLen -= (pos + 11 + dataSize + 4); in Read_1_Packet() [all …]
|
| /OK3568_Linux_fs/external/rockit/tgi/sdk/include/ |
| H A D | RTMediaRockx.h | 132 INT32 dataSize; member
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v1/export-user_ta/host_include/ |
| H A D | tee_api_types.h | 110 uint32_t dataSize; member
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm64/host_include/ |
| H A D | tee_api_types.h | 94 uint32_t dataSize; member
|
| /OK3568_Linux_fs/u-boot/include/optee_include/ |
| H A D | tee_api_types.h | 88 uint32_t dataSize; member
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/include/ |
| H A D | tee_api_types.h | 94 uint32_t dataSize; member
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm64/include/ |
| H A D | tee_api_types.h | 94 uint32_t dataSize; member
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v1/export-user_ta/include/ |
| H A D | tee_api_types.h | 110 uint32_t dataSize; member
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/host_include/ |
| H A D | tee_api_types.h | 94 uint32_t dataSize; member
|
| /OK3568_Linux_fs/u-boot/tools/rockchip/ |
| H A D | boot_merger.h | 177 uint32_t dataSize; member
|
| H A D | boot_merger.c | 689 entry.dataSize = size; in saveEntry() 907 size = entry->dataSize; in unpackEntry() 958 entrys[i].dataOffset, entrys[i].dataSize); in unpackBoot()
|
| /OK3568_Linux_fs/kernel/drivers/message/fusion/ |
| H A D | mptctl.c | 1857 int dataSize; in mptctl_do_mpt_command() local 1914 dataSize = karg.dataOutSize; in mptctl_do_mpt_command() 1917 dataSize = karg.dataInSize; in mptctl_do_mpt_command() 1921 pScsiReq->DataLength = cpu_to_le32(dataSize); in mptctl_do_mpt_command() 1962 int dataSize; in mptctl_do_mpt_command() local 1991 dataSize = karg.dataOutSize; in mptctl_do_mpt_command() 1994 dataSize = karg.dataInSize; in mptctl_do_mpt_command() 1998 pScsiReq->DataLength = cpu_to_le32(dataSize); in mptctl_do_mpt_command()
|