Home
last modified time | relevance | path

Searched refs:repeat_count (Results 1 - 23 of 23) sorted by relevance

/third_party/node/deps/v8/src/snapshot/
H A Dserializer-deserializer.h244 static constexpr bool IsEncodable(int repeat_count) { in IsEncodable()
245 return repeat_count >= kFirstEncodableVariableRepeatCount; in IsEncodable()
248 static constexpr int Encode(int repeat_count) { in Encode()
249 DCHECK(IsEncodable(repeat_count)); in Encode()
250 return repeat_count - kFirstEncodableVariableRepeatCount; in Encode()
H A Dserializer.cc297 void Serializer::PutRepeat(int repeat_count) { in PutRepeat() argument
298 if (repeat_count <= kLastEncodableFixedRepeatCount) { in PutRepeat()
299 sink_.Put(FixedRepeatWithCount::Encode(repeat_count), "FixedRepeat"); in PutRepeat()
302 sink_.PutInt(VariableRepeatCount::Encode(repeat_count), "repeat count"); in PutRepeat()
924 int repeat_count = static_cast<int>(repeat_end - current); in VisitPointers() local
926 bytes_processed_so_far_ += repeat_count * kTaggedSize; in VisitPointers()
927 serializer_->PutRepeat(repeat_count); in VisitPointers()
H A Ddeserializer.cc862 int repeat_count) { in ReadRepeatedObject()
863 CHECK_LE(2, repeat_count); in ReadRepeatedObject()
867 for (int i = 0; i < repeat_count; i++) { in ReadRepeatedObject()
871 return repeat_count; in ReadRepeatedObject()
861 ReadRepeatedObject(SlotAccessor slot_accessor, int repeat_count) ReadRepeatedObject() argument
H A Ddeserializer.h196 int ReadRepeatedObject(SlotGetter slot_getter, int repeat_count);
H A Dserializer.h239 void PutRepeat(int repeat_count);
/third_party/mesa3d/src/amd/compiler/
H A Daco_print_asm.cpp373 unsigned repeat_count = 0; in print_asm_llvm() local
379 repeat_count++; in print_asm_llvm()
383 if (repeat_count) in print_asm_llvm()
384 fprintf(output, "\t(then repeated %u times)\n", repeat_count); in print_asm_llvm()
385 repeat_count = 0; in print_asm_llvm()
/third_party/ffmpeg/libavcodec/
H A Dpsd.c232 unsigned int repeat_count; in decode_rle() local
252 repeat_count = rle_char * -1; in decode_rle()
259 if (target_index + repeat_count >= s->uncompressed_size) { in decode_rle()
265 for (p = 0; p <= repeat_count; p++) { in decode_rle()
268 count += repeat_count + 1; in decode_rle()
/third_party/jerryscript/jerry-core/ecma/builtin-objects/
H A Decma-builtin-string-prototype.c1142 int32_t repeat_count = ecma_number_to_int32 (count_number); in ecma_builtin_string_prototype_object_repeat() local
1154 if (repeat_count == 0 || size == 0 || isNan) in ecma_builtin_string_prototype_object_repeat()
1159 if ((uint32_t) repeat_count >= (ECMA_STRING_SIZE_LIMIT / size)) in ecma_builtin_string_prototype_object_repeat()
1164 lit_utf8_size_t total_size = size * (lit_utf8_size_t) repeat_count; in ecma_builtin_string_prototype_object_repeat()
1170 for (int32_t n = 0; n < repeat_count; n++) in ecma_builtin_string_prototype_object_repeat()
/third_party/ffmpeg/libavformat/
H A Dimf.h71 uint32_t repeat_count; /**< BaseResourceType/RepeatCount */ member
H A Dimfdec.c467 if (track->resource_count > INT32_MAX - track_file_resource->base.repeat_count in open_track_file_resource()
468 || (track->resource_count + track_file_resource->base.repeat_count) in open_track_file_resource()
473 (track->resource_count + track_file_resource->base.repeat_count) in open_track_file_resource()
479 for (uint32_t i = 0; i < track_file_resource->base.repeat_count; i++) { in open_track_file_resource()
H A Dimf_cpl.c146 rsrc->repeat_count = 1; in imf_base_resource_init()
290 ret = ff_imf_xml_read_uint32(element, &resource->repeat_count); in fill_base_resource()
/third_party/libcoap/examples/
H A Dcoap-client.c81 static size_t repeat_count = 1; variable
1746 repeat_count = atoi(optarg); in main()
1747 if (!repeat_count || repeat_count > 255) { in main()
1749 repeat_count = 1; in main()
1909 repeat_count--; in main()
1914 repeat_count || /* more repeat transmissions to go */ in main()
1928 if (repeat_count) { in main()
1962 if (ready && repeat_count) { in main()
1990 repeat_count in main()
[all...]
/third_party/astc-encoder/Source/
H A Dastcenccli_internal.h72 unsigned int repeat_count; member
H A Dastcenccli_toplevel.cpp1107 cli_config.repeat_count = atoi(argv[argidx - 1]); in edit_astcenc_config()
1108 if (cli_config.repeat_count <= 0) in edit_astcenc_config()
2243 for (unsigned int i = 0; i < cli_config.repeat_count; i++)
2326 for (unsigned int i = 0; i < cli_config.repeat_count; i++)
2433 double repeats = static_cast<double>(cli_config.repeat_count);
/third_party/skia/third_party/externals/freetype/src/sfnt/
H A Dsfwoff2.c532 FT_Byte repeat_count = 0; in store_points() local
573 if ( flag == last_flag && repeat_count != 255 ) in store_points()
576 repeat_count++; in store_points()
580 if ( repeat_count != 0 ) in store_points()
585 dst[flag_offset++] = repeat_count; in store_points()
591 repeat_count = 0; in store_points()
599 if ( repeat_count != 0 ) in store_points()
604 dst[flag_offset++] = repeat_count; in store_points()
/third_party/python/Tools/stringbench/
H A Dstringbench.py57 def bench(s, group, repeat_count):
66 f.repeat_count = repeat_count
1468 v.comment, v.repeat_count))
/third_party/mesa3d/src/gallium/drivers/r600/sb/
H A Dsb_ir.cpp484 ++s.repeat_count; in collect_stats()
523 sblog << " repeat_count : " << repeat_count << "\n"; in dump() local
H A Dsb_if_conversion.cpp136 s.if_count != 1 || s.repeat_count || s.uses_ar) in check_and_convert()
H A Dsb_ir.h748 unsigned repeat_count; member
755 repeat_count(), if_count(), uses_ar(false) {} in node_stats()
/third_party/backends/backend/
H A Dgt68xx_high.c470 SANE_Int repeat_count; in gt68xx_scanner_internal_start_scan() local
490 for (repeat_count = 0; repeat_count < 30 * 100; ++repeat_count) in gt68xx_scanner_internal_start_scan()
H A Dartec_eplus48u.c2462 SANE_Int repeat_count; in artec48u_scanner_internal_start_scan() local
2480 for (repeat_count = 0; repeat_count < 30 * 10; ++repeat_count) in artec48u_scanner_internal_start_scan()
/third_party/skia/third_party/externals/harfbuzz/src/
H A Dhb-ot-glyf-table.hh658 unsigned int repeat_count = *p++; in get_contour_points() local
659 while ((repeat_count-- > 0) && (++i < num_points)) in get_contour_points()
/third_party/pcre2/pcre2/src/
H A Dpcre2_jit_compile.c10454 int repeat_type = 0, repeat_count = 0; in compile_bracket_matchingpath() local
10486 repeat_count = PRIVATE_DATA(matchingpath + 3); in compile_bracket_matchingpath()
10487 SLJIT_ASSERT(repeat_length != 0 && repeat_type != 0 && repeat_count != 0); in compile_bracket_matchingpath()
10597 OP1(SLJIT_MOV, SLJIT_MEM1(SLJIT_SP), repeat_ptr, SLJIT_IMM, repeat_count); in compile_bracket_matchingpath()
12665 int repeat_ptr = 0, repeat_type = 0, repeat_count = 0; in compile_bracket_backtrackingpath() local
12695 repeat_count = PRIVATE_DATA(ccbegin + 3); in compile_bracket_backtrackingpath()
12696 SLJIT_ASSERT(repeat_type != 0 && repeat_count != 0); in compile_bracket_backtrackingpath()
13086 CMPTO(SLJIT_LESS_EQUAL, TMP1, 0, SLJIT_IMM, repeat_count, exact_label); in compile_bracket_backtrackingpath()

Completed in 52 milliseconds