Home
last modified time | relevance | path

Searched refs:size (Results 5226 - 5250 of 25058) sorted by relevance

1...<<201202203204205206207208209210>>...1003

/third_party/ffmpeg/libavformat/
H A Dflvdec.c50 int trust_datasize; ///< trust data size of FLVTag
397 ret = 1; // 1 byte body size adjustment for flv_read_packet() in flv_set_video_codec()
856 static int flv_get_extradata(AVFormatContext *s, AVStream *st, int size) in flv_get_extradata() argument
859 if (!size) in flv_get_extradata()
862 if ((ret = ff_get_extradata(s, st->codecpar, s->pb, size)) < 0) in flv_get_extradata()
869 int size) in flv_queue_extradata()
871 if (!size) in flv_queue_extradata()
875 flv->new_extradata[stream] = av_mallocz(size + in flv_queue_extradata()
879 flv->new_extradata_size[stream] = size; in flv_queue_extradata()
880 avio_read(pb, flv->new_extradata[stream], size); in flv_queue_extradata()
868 flv_queue_extradata(FLVContext *flv, AVIOContext *pb, int stream, int size) flv_queue_extradata() argument
928 int size = avio_rb16(pb); amf_skip_tag() local
1060 int ret, i, size, flags; global() local
1231 int size; global() local
[all...]
H A Djvdec.c37 int audio_size; /**< audio packet size (bytes) */
38 int video_size; /**< video packet size (bytes) */
39 uint16_t palette_size; /**< palette size (bytes) */
123 /* total frame size including audio, video, palette data and padding */ in read_header()
124 e->size = avio_rl32(pb); in read_header()
127 offset += e->size; in read_header()
134 e->size - jvf->audio_size in read_header()
186 int size = jvf->video_size + jvf->palette_size; in read_packet() local
187 if ((ret = av_new_packet(pkt, size + JV_PREAMBLE_SIZE)) < 0) in read_packet()
192 ret = avio_read(pb, pkt->data + JV_PREAMBLE_SIZE, size); in read_packet()
[all...]
H A Daiffenc.c48 uint64_t pos, end, size; in put_id3v2_tags() local
70 size = end - pos; in put_id3v2_tags()
72 /* Update chunk size */ in put_id3v2_tags()
74 avio_wb32(pb, size); in put_id3v2_tags()
77 if (size & 1) in put_id3v2_tags()
89 int size = strlen(tag->value); in put_meta() local
92 avio_wb32(pb, FFALIGN(size, 2)); in put_meta()
93 avio_write(pb, tag->value, size); in put_meta()
94 if (size & 1) in put_meta()
160 avio_wb32(pb, aifc ? 24 : 18); /* size */ in aiff_write_header()
[all...]
H A Dlibamqp.c52 { "pkt_size", "Maximum send/read packet size", OFFSET(pkt_size), AV_OPT_TYPE_INT, { .i64 = 131072 }, 4096, INT_MAX, .flags = D | E },
235 static int amqp_proto_write(URLContext *h, const unsigned char *buf, int size) in amqp_proto_write() argument
241 amqp_bytes_t message = { size, (void *)buf }; in amqp_proto_write()
261 return size; in amqp_proto_write()
264 static int amqp_proto_read(URLContext *h, unsigned char *buf, int size) in amqp_proto_read() argument
283 if (envelope.message.body.len > size) { in amqp_proto_read()
289 size = FFMIN(size, envelope.message.body.len); in amqp_proto_read()
291 memcpy(buf, envelope.message.body.bytes, size); in amqp_proto_read()
294 return size; in amqp_proto_read()
[all...]
/third_party/libexif/libexif/
H A Dexif-data.c171 exif_data_new_from_data (const unsigned char *data, unsigned int size) in exif_data_new_from_data() argument
176 exif_data_load_data (edata, data, size); in exif_data_new_from_data()
183 unsigned int size, unsigned int offset) in exif_data_load_data_entry()
215 if (doff >= size) { in exif_data_load_data_entry()
217 "Tag starts past end of buffer (%u > %u)", doff, size); in exif_data_load_data_entry()
221 if (s > size - doff) { in exif_data_load_data_entry()
223 "Tag data goes past end of buffer (%u > %u)", doff+s, size); in exif_data_load_data_entry()
229 entry->size = s; in exif_data_load_data_entry()
242 } else if (entry->size > 6) { in exif_data_load_data_entry()
255 if (entry->data && (entry->size > in exif_data_load_data_entry()
181 exif_data_load_data_entry(ExifData *data, ExifEntry *entry, const unsigned char *d, unsigned int size, unsigned int offset) exif_data_load_data_entry() argument
[all...]
/third_party/backends/backend/
H A Dhp3900_sane.c191 static void Color_Negative (SANE_Byte * buffer, SANE_Int size,
193 static void Color_to_Gray (SANE_Byte * buffer, SANE_Int size, SANE_Int depth);
194 static void Gray_to_Lineart (SANE_Byte * buffer, SANE_Int size,
196 static void Depth_16_to_8 (SANE_Byte * from_buffer, SANE_Int size,
200 static void gamma_apply (TScanner * s, SANE_Byte * buffer, SANE_Int size,
214 static SANE_Status img_buffers_alloc (TScanner * scanner, SANE_Int size);
502 scanner->aOptions[opt_chipname].size = strlen (data) + 1; in bknd_info()
600 img_buffers_alloc (TScanner * scanner, SANE_Int size) in img_buffers_alloc() argument
615 scanner->image = (SANE_Byte *) malloc (size * sizeof (SANE_Byte)); in img_buffers_alloc()
618 scanner->rest = (SANE_Byte *) malloc (size * sizeo in img_buffers_alloc()
724 Color_Negative(SANE_Byte * buffer, SANE_Int size, SANE_Int depth) Color_Negative() argument
774 Depth_16_to_8(SANE_Byte * from_buffer, SANE_Int size, SANE_Byte * to_buffer) Depth_16_to_8() argument
793 Gray_to_Lineart(SANE_Byte * buffer, SANE_Int size, SANE_Int threshold) Gray_to_Lineart() argument
824 Color_to_Gray(SANE_Byte * buffer, SANE_Int size, SANE_Int depth) Color_to_Gray() argument
942 gamma_apply(TScanner * s, SANE_Byte * buffer, SANE_Int size, SANE_Int depth) gamma_apply() argument
1085 size_t size, max_size = 0; max_string_size() local
[all...]
H A Dhp5590.c666 opts[HP5590_OPT_NUM].size = sizeof(SANE_Word); in sane_open()
687 opts[HP5590_OPT_TL_X].size = sizeof(SANE_Fixed); in sane_open()
697 opts[HP5590_OPT_TL_Y].size = sizeof(SANE_Fixed); in sane_open()
707 opts[HP5590_OPT_BR_X].size = sizeof(SANE_Fixed); in sane_open()
717 opts[HP5590_OPT_BR_Y].size = sizeof(SANE_Fixed); in sane_open()
727 opts[HP5590_OPT_MODE].size = MAX_SCAN_MODE_VALUE_LEN; in sane_open()
738 opts[HP5590_OPT_SOURCE].size = MAX_SCAN_SOURCE_VALUE_LEN; in sane_open()
748 opts[HP5590_OPT_RESOLUTION].size = sizeof(SANE_Int); in sane_open()
758 opts[HP5590_OPT_LAMP_TIMEOUT].size = sizeof(SANE_Bool); in sane_open()
768 opts[HP5590_OPT_WAIT_FOR_BUTTON].size in sane_open()
1693 convert_gray_and_lineart(struct hp5590_scanner *scanner, SANE_Byte *data, SANE_Int size) convert_gray_and_lineart() argument
1872 convert_to_rgb(struct hp5590_scanner *scanner, SANE_Byte *data, SANE_Int size) convert_to_rgb() argument
[all...]
H A Dkvs1025_usb.c234 size_t size = header->data_size + 12; in kv_usb_escape() local
235 size_t size_read = size; in kv_usb_escape()
253 if (size_read != size) in kv_usb_escape()
256 DBG (DBG_shortread, "usb_bulk_read: bytes to read = %lu\n", (unsigned long)size); in kv_usb_escape()
265 size_t size = header->data_size + 12; in kv_usb_escape() local
266 size_t size_written = size; in kv_usb_escape()
271 Ito32 (size, data); in kv_usb_escape()
289 if (size_written != size) in kv_usb_escape()
292 DBG (DBG_shortread, "usb_bulk_write: bytes to write = %lu\n", (unsigned long)size); in kv_usb_escape()
/third_party/vixl/src/aarch32/
H A Dassembler-aarch32.h253 EncodingSize size,
267 EncodingSize size,
274 EncodingSize size,
292 EncodingSize size,
313 EncodingSize size,
322 EncodingSize size,
340 Condition cond, EncodingSize size, Register rd, Register rn, Register rm);
342 EncodingSize size);
346 EncodingSize size,
349 EncodingSize size,
1897 adc(EncodingSize size, Register rd, Register rn, const Operand& operand) adc() argument
1915 adcs(EncodingSize size, Register rd, Register rn, const Operand& operand) adcs() argument
1933 add(EncodingSize size, Register rd, Register rn, const Operand& operand) add() argument
1954 adds(EncodingSize size, Register rd, Register rn, const Operand& operand) adds() argument
1978 adr(EncodingSize size, Register rd, Location* location) adr() argument
1993 and_(EncodingSize size, Register rd, Register rn, const Operand& operand) and_() argument
2011 ands(EncodingSize size, Register rd, Register rn, const Operand& operand) ands() argument
2029 asr(EncodingSize size, Register rd, Register rm, const Operand& operand) asr() argument
2047 asrs(EncodingSize size, Register rd, Register rm, const Operand& operand) asrs() argument
2061 b(EncodingSize size, Location* location) b() argument
2085 bic(EncodingSize size, Register rd, Register rn, const Operand& operand) bic() argument
2103 bics(EncodingSize size, Register rd, Register rn, const Operand& operand) bics() argument
2158 cmn(EncodingSize size, Register rn, const Operand& operand) cmn() argument
2170 cmp(EncodingSize size, Register rn, const Operand& operand) cmp() argument
2215 eor(EncodingSize size, Register rd, Register rn, const Operand& operand) eor() argument
2233 eors(EncodingSize size, Register rd, Register rn, const Operand& operand) eors() argument
2327 ldm(EncodingSize size, Register rn, WriteBack write_back, RegisterList registers) ldm() argument
2388 ldmfd(EncodingSize size, Register rn, WriteBack write_back, RegisterList registers) ldmfd() argument
2413 ldr(EncodingSize size, Register rt, const MemOperand& operand) ldr() argument
2427 ldr(EncodingSize size, Register rt, Location* location) ldr() argument
2441 ldrb(EncodingSize size, Register rt, const MemOperand& operand) ldrb() argument
2501 ldrh(EncodingSize size, Register rt, const MemOperand& operand) ldrh() argument
2522 ldrsb(EncodingSize size, Register rt, const MemOperand& operand) ldrsb() argument
2543 ldrsh(EncodingSize size, Register rt, const MemOperand& operand) ldrsh() argument
2565 lsl(EncodingSize size, Register rd, Register rm, const Operand& operand) lsl() argument
2583 lsls(EncodingSize size, Register rd, Register rm, const Operand& operand) lsls() argument
2601 lsr(EncodingSize size, Register rd, Register rm, const Operand& operand) lsr() argument
2619 lsrs(EncodingSize size, Register rd, Register rm, const Operand& operand) lsrs() argument
2649 mov(EncodingSize size, Register rd, const Operand& operand) mov() argument
2663 movs(EncodingSize size, Register rd, const Operand& operand) movs() argument
2689 mul(EncodingSize size, Register rd, Register rn, Register rm) mul() argument
2704 mvn(EncodingSize size, Register rd, const Operand& operand) mvn() argument
2718 mvns(EncodingSize size, Register rd, const Operand& operand) mvns() argument
2725 nop(EncodingSize size) nop() argument
2748 orr(EncodingSize size, Register rd, Register rn, const Operand& operand) orr() argument
2766 orrs(EncodingSize size, Register rd, Register rn, const Operand& operand) orrs() argument
2809 pop(EncodingSize size, RegisterList registers) pop() argument
2816 pop(EncodingSize size, Register rt) pop() argument
2823 push(EncodingSize size, RegisterList registers) push() argument
2830 push(EncodingSize size, Register rt) push() argument
2870 rev(EncodingSize size, Register rd, Register rm) rev() argument
2879 rev16(EncodingSize size, Register rd, Register rm) rev16() argument
2888 revsh(EncodingSize size, Register rd, Register rm) revsh() argument
2903 ror(EncodingSize size, Register rd, Register rm, const Operand& operand) ror() argument
2921 rors(EncodingSize size, Register rd, Register rm, const Operand& operand) rors() argument
2945 rsb(EncodingSize size, Register rd, Register rn, const Operand& operand) rsb() argument
2963 rsbs(EncodingSize size, Register rd, Register rn, const Operand& operand) rsbs() argument
3000 sbc(EncodingSize size, Register rd, Register rn, const Operand& operand) sbc() argument
3018 sbcs(EncodingSize size, Register rd, Register rn, const Operand& operand) sbcs() argument
3329 stm(EncodingSize size, Register rn, WriteBack write_back, RegisterList registers) stm() argument
3358 stmdb(EncodingSize size, Register rn, WriteBack write_back, RegisterList registers) stmdb() argument
3379 stmea(EncodingSize size, Register rn, WriteBack write_back, RegisterList registers) stmea() argument
3428 str(EncodingSize size, Register rt, const MemOperand& operand) str() argument
3442 strb(EncodingSize size, Register rt, const MemOperand& operand) strb() argument
3500 strh(EncodingSize size, Register rt, const MemOperand& operand) strh() argument
3515 sub(EncodingSize size, Register rd, Register rn, const Operand& operand) sub() argument
3536 subs(EncodingSize size, Register rd, Register rn, const Operand& operand) subs() argument
3581 sxtb(EncodingSize size, Register rd, const Operand& operand) sxtb() argument
3598 sxth(EncodingSize size, Register rd, const Operand& operand) sxth() argument
3619 tst(EncodingSize size, Register rn, const Operand& operand) tst() argument
3641 udf(EncodingSize size, uint32_t imm) udf() argument
3776 uxtb(EncodingSize size, Register rd, const Operand& operand) uxtb() argument
3793 uxth(EncodingSize size, Register rd, const Operand& operand) uxth() argument
6150 yield(EncodingSize size) yield() argument
[all...]
/base/hiviewdfx/hidumper/services/native/src/
H A Ddump_common_utils.cpp120 for (size_t i = 0; i < names.size(); i++) { in GetCpuInfos()
125 std::string cpuId = name.substr(CPU_STR.size()); in GetCpuInfos()
157 for (size_t i = 0; i < names.size(); i++) { in GetPidInfos()
256 return (str.compare(0, head.size(), head) == 0); in StartWith()
284 name = longNames[longNames.size() - 1]; in GetProcessNameByPid()
305 for (size_t i = 0; i < lines.size(); i++) { in GetProcessInfo()
308 if (keyValue.size() < LINE_ITEM_MIN) { in GetProcessInfo()
341 for (size_t i = 0; i < fullFileName.size(); i++) { in FindDigitIndex()
346 return static_cast<int>(fullFileName.size()); in FindDigitIndex()
/base/hiviewdfx/hiappevent/frameworks/js/napi/src/
H A Dnapi_app_event_holder.cpp96 napi_define_class(env, HOLDER_CLASS_NAME.c_str(), HOLDER_CLASS_NAME.size(), NapiConstructor, nullptr, in NapiExport()
110 NapiUtil::ThrowError(env, NapiError::ERR_PARAM, NapiUtil::CreateErrMsg("size")); in NapiSetRow()
114 NapiUtil::ThrowError(env, NapiError::ERR_PARAM, NapiUtil::CreateErrMsg("size", "number")); in NapiSetRow()
122 NapiUtil::ThrowError(env, NapiError::ERR_INVALID_SIZE, "Invalid size value."); in NapiSetRow()
134 NapiUtil::ThrowError(env, NapiError::ERR_PARAM, NapiUtil::CreateErrMsg("size")); in NapiSetSize()
138 NapiUtil::ThrowError(env, NapiError::ERR_PARAM, NapiUtil::CreateErrMsg("size", "number")); in NapiSetSize()
146 NapiUtil::ThrowError(env, NapiError::ERR_INVALID_SIZE, "Invalid size value."); in NapiSetSize()
164 NapiUtil::SetNamedProperty(env, packageObj, "size", NapiUtil::CreateInt32(env, package->size)); in NapiTakeNext()
177 void NapiAppEventHolder::SetSize(int size) in SetSize() argument
[all...]
/base/security/huks/frameworks/huks_standard/main/crypto_engine/mbedtls/src/
H A Dhks_mbedtls_ecc.c97 if (key->size < (sizeof(struct KeyMaterialEcc) + keyMaterial->xSize + keyMaterial->ySize + keyMaterial->zSize)) { in EccKeyCheck()
98 HKS_LOG_E("Ecc key size too small! key size = 0x%" LOG_PUBLIC "X", key->size); in EccKeyCheck()
163 /* public exponent x and y, and private exponent, so need size is: key_size / 8 * 3 */ in EccSaveKeyMaterial()
204 key->size = rawMaterialLen; in EccSaveKeyMaterial()
254 /* check keyOut size */ in GetEccPubKeyCheckParams()
261 if (keyOut->size < (sizeof(struct KeyMaterialEcc) + keyMaterial->xSize + keyMaterial->ySize)) { in GetEccPubKeyCheckParams()
262 HKS_LOG_E("Ecc public keyOut size too small! keyOut size in GetEccPubKeyCheckParams()
[all...]
/base/sensors/medical_sensor/services/medical_sensor/test/unittest/common/
H A Dclient_info_test.cpp288 ASSERT_EQ(ret.size(), 2UL); in HWTEST_F()
301 ASSERT_EQ(ret.size(), 0UL); in HWTEST_F()
302 HiLog::Info(LABEL, "%{public}s end ret.size() : %{public}d", __func__, int32_t { ret.size() }); in HWTEST_F()
314 ASSERT_EQ(ret.size(), 0UL); in HWTEST_F()
315 HiLog::Info(LABEL, "%{public}s end ret.size() : %{public}d", __func__, int32_t { ret.size() }); in HWTEST_F()
327 ASSERT_EQ(ret.size(), 1UL); in HWTEST_F()
345 ASSERT_EQ(channelList.size(), 2UL); in HWTEST_F()
354 ASSERT_EQ(channelList.size(), in HWTEST_F()
[all...]
/base/security/huks/frameworks/huks_standard/main/crypto_engine/openssl/src/
H A Dhks_openssl_curve25519.c35 HKS_IF_NULL_LOGE_RETURN(buffer, HKS_ERROR_MALLOC_FAIL, "malloc size %" LOG_PUBLIC "u failed", totalSize) in SaveCurve25519KeyMaterial()
63 keyOut->size = totalSize; in SaveCurve25519KeyMaterial()
148 size_t tmpSharedKeySize = (size_t)sharedKey->size; in HksOpensslX25519AgreeKey()
173 sharedKey->size = (uint32_t)tmpSharedKeySize; in HksOpensslX25519AgreeKey()
253 if (EVP_DigestSign(mdctx, signature->data, &req, message->data, message->size) <= 0) { in HksOpensslEd25519Sign()
258 signature->size = req; in HksOpensslEd25519Sign()
293 if (EVP_DigestVerify(mdctx, signature->data, signature->size, message->data, message->size) != in HksOpensslEd25519Verify()
311 if (memcpy_s(output->data, output->size, key, outLen) != EOK) { in HksOpensslGetEd25519PubKey()
317 output->size in HksOpensslGetEd25519PubKey()
[all...]
H A Dhks_openssl_dh.c52 HKS_LOG_E("invalid key size, keySize = %" LOG_PUBLIC "u", keySize); in HksOpensslGetNid()
73 if (key->size != sizeof(struct KeyMaterialDh) + keyMaterial->pubKeySize + keyMaterial->priKeySize) { in InitDhStruct()
152 key->size = rawMaterialLen; in DhSaveKeyMaterial()
188 if (input->size < sizeof(struct KeyMaterialDh) + keyMaterial->pubKeySize) { in HksOpensslGetDhPubKey()
191 if (output->size < sizeof(struct KeyMaterialDh) + keyMaterial->pubKeySize) { in HksOpensslGetDhPubKey()
195 if (memcpy_s(output->data, output->size, input->data, sizeof(struct KeyMaterialDh) + in HksOpensslGetDhPubKey()
202 output->size = sizeof(struct KeyMaterialDh) + keyMaterial->pubKeySize; in HksOpensslGetDhPubKey()
280 if (HKS_KEY_BYTES(spec->keyLen) > sharedKey->size) { in HksOpensslDhAgreeKey()
313 if (memcpy_s(sharedKey->data, sharedKey->size, computeKey, HKS_KEY_BYTES(spec->keyLen)) != EOK) { in HksOpensslDhAgreeKey()
316 HKS_LOG_I("get agreed key size in HksOpensslDhAgreeKey()
[all...]
/base/security/huks/test/unittest/huks_standard_test/module_test/service_test/huks_service/os_dependency/idl/ipc/src/
H A Dhuks_ipc_serialization_test.cpp69 struct HksBlob aliasBlob = { .size = strlen(alias), .data = (uint8_t *)alias }; in HWTEST_F()
93 struct HksBlob aliasBlob = { .size = strlen(alias), .data = (uint8_t *)alias }; in HWTEST_F()
114 struct HksBlob aliasBlob = { .size = strlen(alias), .data = (uint8_t *)alias }; in HWTEST_F()
124 ASSERT_TRUE(aliasOutParam.blob->data == nullptr && aliasOutParam.blob->size == 0); in HWTEST_F()
259 struct HksBlob aliasBlob = { .size = strlen(alias), .data = (uint8_t *)alias }; in HWTEST_F()
281 struct HksBlob blob = { .size = blobSize, .data = blobData }; in HWTEST_F()
282 struct HksBlob srcBlob = { .size = srcBlobSize, .data = srcBlobData }; in HWTEST_F()
301 struct HksBlob blob = { .size = blobSize, .data = blobData }; in HWTEST_F()
302 struct HksBlob srcBlob = { .size = srcBlobSize, .data = srcBlobData }; in HWTEST_F()
/base/startup/init/services/modules/init_context/
H A Dinit_context.c45 static void HandleRecvMessage(SubInitInfo *subInfo, char *buffer, uint32_t size);
191 static int HandleRecvMessage_(SubInitInfo *subInfo, char *buffer, uint32_t size) in HandleRecvMessage_() argument
196 ssize_t rLen = TEMP_FAILURE_RETRY(read(subInfo->recvFd, buffer, size)); in HandleRecvMessage_()
198 rLen = TEMP_FAILURE_RETRY(read(subInfo->recvFd, buffer, size)); in HandleRecvMessage_()
200 PLUGIN_CHECK(rLen >= 0 && rLen < size, return errno, in HandleRecvMessage_()
211 static void HandleRecvMessage(SubInitInfo *subInfo, char *buffer, uint32_t size) in HandleRecvMessage() argument
213 int ret = HandleRecvMessage_(subInfo, buffer, size); in HandleRecvMessage()
214 int len = snprintf_s(buffer, size, size - 1, "%d", ret); in HandleRecvMessage()
/base/update/updater/test/unittest/script/script_instruction/
H A Dscript_updateprocesser_unittest.cpp84 EXPECT_EQ(output.size(), 0); in TestUpdateProcesserSetProcess()
98 EXPECT_EQ(output.size(), 0); in TestUpdateProcesserSetProcess()
118 EXPECT_EQ(output.size(), 0); in TestUpdateProcesserShowProcess()
127 EXPECT_EQ(output.size(), 0); in TestUpdateProcesserShowProcess()
138 EXPECT_EQ(output.size(), 0); in TestUpdateProcesserShowProcess()
158 EXPECT_EQ(output.size(), 0); in TestUpdateProcesserPrint()
167 EXPECT_EQ(output.size(), 0); in TestUpdateProcesserPrint()
186 EXPECT_EQ(output.size(), 0); in TestUpdateProcesserSetProportion()
196 EXPECT_EQ(output.size(), 0); in TestUpdateProcesserSetProportion()
/base/useriam/pin_auth/test/unittest/src/
H A Dpin_auth_driver_hdi_unit_test.cpp65 EXPECT_TRUE(executorList.size() == 0); in HWTEST_F()
77 EXPECT_TRUE(executorList.size() == 0); in HWTEST_F()
93 EXPECT_TRUE(executorList.size() == 0); in HWTEST_F()
113 EXPECT_TRUE(executorList.size() == 0); in HWTEST_F()
133 EXPECT_TRUE(executorList.size() == 0); in HWTEST_F()
156 EXPECT_TRUE(executorList.size() == 1); in HWTEST_F()
184 EXPECT_TRUE(executorList.size() == 2); in HWTEST_F()
207 EXPECT_TRUE(executorList.size() == 0); in HWTEST_F()
228 EXPECT_TRUE(executorList.size() == 1); in HWTEST_F()
/base/useriam/fingerprint_auth/test/unittest/
H A Dfingerprint_auth_driver_hdi_unit_test.cpp64 EXPECT_TRUE(executorList.size() == 0); in HWTEST_F()
76 EXPECT_TRUE(executorList.size() == 0); in HWTEST_F()
92 EXPECT_TRUE(executorList.size() == 0); in HWTEST_F()
110 EXPECT_TRUE(executorList.size() == 0); in HWTEST_F()
128 EXPECT_TRUE(executorList.size() == 0); in HWTEST_F()
151 EXPECT_TRUE(executorList.size() == 1); in HWTEST_F()
179 EXPECT_TRUE(executorList.size() == 2); in HWTEST_F()
202 EXPECT_TRUE(executorList.size() == 0); in HWTEST_F()
225 EXPECT_TRUE(executorList.size() == 1); in HWTEST_F()
/test/ostest/wukong/component_event/src/
H A Dscene_delegate.cpp48 if (componentinfos.size() > 0) { in GetCurrentComponentInfo()
70 } else if (GRID_COUNT <= componentlist.size() && in GetCurrentComponentInfo()
99 newpage->SetAllComponentCount(allcomponentlist.size()); in ChooseScene()
101 newpage->SetValidComponentCount(allcomponentlist.size()); in ChooseScene()
163 DEBUG_LOG_STR("childlist size %d", currentChildList.size()); in CompareComponentInfos()
168 if (newChildList.size() > currentChildList.size()) { in CompareComponentInfos()
169 samePercent = (float)samecount / (float)currentChildList.size(); in CompareComponentInfos()
171 samePercent = (float)samecount / (float)newChildList.size(); in CompareComponentInfos()
[all...]
H A Dfocus_scene_delegate.cpp48 if (componentinfos.size() > 0) { in GetCurrentComponentInfo()
70 } else if (GRID_COUNT <= componentlist.size() && in GetCurrentComponentInfo()
101 newpage->SetAllComponentCount(allcomponentlist.size()); in ChooseScene()
103 newpage->SetValidComponentCount(allcomponentlist.size()); in ChooseScene()
163 DEBUG_LOG_STR("childlist size %d", currentChildList.size()); in CompareComponentInfos()
168 if (newChildList.size() > currentChildList.size()) { in CompareComponentInfos()
169 samePercent = (float)samecount / (float)currentChildList.size(); in CompareComponentInfos()
171 samePercent = (float)samecount / (float)newChildList.size(); in CompareComponentInfos()
[all...]
/test/xts/hats/hdf/display/composer/common/
H A Dhdi_test_display.cpp40 DISPLAY_TEST_LOGE("the modes size() %{public}zu", modes_.size()); in Init()
120 DISPLAY_TEST_LOGE("the change numbers %{public}zu, layers size %{public}zu", layers.size(), layers.size()); in RefreshLayersCompType()
121 for (uint32_t i = 0; i < layers.size(); i++) { in RefreshLayersCompType()
137 DISPLAY_TEST_LOGE("the release fence numbers %{public}zu, layers size %{public}zu", layers.size(), layers.size()); in GetLayersReleaseFence()
138 for (uint32_t i = 0; i < layers.size(); in GetLayersReleaseFence()
[all...]
/third_party/ffmpeg/libavcodec/
H A Dmvha.c155 uint32_t type, size; in decode_frame() local
158 if (avpkt->size <= 8) in decode_frame()
162 size = AV_RL32(avpkt->data + 4); in decode_frame()
164 if (size < 1 || size >= avpkt->size) in decode_frame()
179 zstream->avail_in = avpkt->size - 8; in decode_frame()
199 ret = init_get_bits8(gb, avpkt->data + 8, avpkt->size - 8); in decode_frame()
279 return avpkt->size; in decode_frame()
/third_party/gn/src/base/strings/
H A Dstring_split.cc100 result->resize(result->size() + 1); in AppendStringKeyValue()
112 input.substr(end_key_pos, input.size() - end_key_pos); in AppendStringKeyValue()
118 remains.substr(begin_value_pos, remains.size() - begin_value_pos)); in AppendStringKeyValue()
134 begin_index = end_index + delimiter.size()) { in SplitStringUsingSubstrT()
154 if (separators.size() == 1) { in SplitString()
166 if (separators.size() == 1) { in SplitString()
178 if (separators.size() == 1) { in SplitStringPiece()
191 if (separators.size() == 1) { in SplitStringPiece()
208 key_value_pairs->reserve(pairs.size()); in SplitStringIntoKeyValuePairs()

Completed in 37 milliseconds

1...<<201202203204205206207208209210>>...1003