Searched refs:repeat (Results 126 - 150 of 354) sorted by relevance

1234567891011>>

/external/fonttools/Tools/fontTools/ttLib/tables/
H A D_g_l_y_f.py433 repeat = 1
435 repeat = byteord(data[i]) + 1
437 for k in range(repeat):
498 repeat = 0
532 if flag == lastflag and repeat != 255:
533 repeat = repeat + 1
534 if repeat == 1:
538 compressedflags[-1] = repeat
540 repeat
[all...]
H A DotBase.py555 if conv.repeat:
557 if conv.repeat in table:
558 countValue = table[conv.repeat]
560 # conv.repeat is a propagated count
561 countValue = reader[conv.repeat]
597 if conv.repeat:
601 if conv.repeat in table:
602 CountReference(table, conv.repeat).setValue(countValue)
604 # conv.repeat is a propagated count
605 writer[conv.repeat]
[all...]
/external/fonttools/Lib/fontTools/ttLib/tables/
H A DotBase.py555 if conv.repeat:
557 if conv.repeat in table:
558 countValue = table[conv.repeat]
560 # conv.repeat is a propagated count
561 countValue = reader[conv.repeat]
597 if conv.repeat:
601 if conv.repeat in table:
602 CountReference(table, conv.repeat).setValue(countValue)
604 # conv.repeat is a propagated count
605 writer[conv.repeat]
[all...]
/external/v8/src/runtime/
H A Druntime-strings.cc416 int repeat, int length) {
417 if (repeat == 0) return;
425 while (done < repeat) {
426 int block = Min(done, repeat - done);
450 int repeat = position - previous_separator_position; local
451 WriteRepeatToFlat<Char>(separator, buffer, cursor, repeat,
453 cursor += repeat * separator_length;
464 int repeat = last_array_index - previous_separator_position; local
465 WriteRepeatToFlat<Char>(separator, buffer, cursor, repeat, separator_length);
466 cursor += repeat * separator_lengt
415 WriteRepeatToFlat(String* src, Vector<sinkchar> buffer, int cursor, int repeat, int length) argument
[all...]
/external/libavc/common/arm/
H A Dih264_default_weighted_pred_a9q.s142 bgt loop_4 @if greater than 0 repeat the loop again
166 bgt loop_8 @if greater than 0 repeat the loop again
207 bgt loop_16 @if greater than 0 repeat the loop again
309 bgt loop_2_uv @if greater than 0 repeat the loop again
326 bgt loop_4_uv @if greater than 0 repeat the loop again
351 bgt loop_8_uv @if greater than 0 repeat the loop again
/external/mesa3d/src/gallium/drivers/freedreno/ir3/
H A Dinstr-a3xx.h306 uint32_t repeat : 3; member in struct:PACKED
344 uint32_t repeat : 3; member in struct:PACKED
409 uint32_t repeat : 3; member in struct:PACKED
472 uint32_t repeat : 3; member in struct:PACKED
528 uint32_t repeat : 3; member in struct:PACKED
684 uint32_t repeat : 3; /* cat0-cat4 */ member in struct:PACKED::PACKED
H A Dir3_legalize.c163 if (is_nop(last) && (last->repeat < 5)) {
164 last->repeat++;
/external/guava/guava-tests/test/com/google/common/net/
H A DInternetDomainNameTest.java51 static final String LOTS_OF_DELTAS = Strings.repeat(DELTA, 62);
54 Strings.repeat("a.", 127);
57 Strings.repeat("aaaaa.", 40) + "1234567890.c";
/external/libxml2/
H A DtestRegexp.c16 static int repeat = 0; variable
29 if (repeat) {
262 fprintf(stderr, " --repeat: loop on the operation\n");
298 } else if ((!strcmp(argv[i], "-repeat")) ||
299 (!strcmp(argv[i], "--repeat"))) {
300 repeat++;
/external/valgrind/none/tests/ppc32/
H A Dtest_dfp1.c328 int i, repeat = 1; local
381 if (repeat) {
382 repeat = 0;
H A Dtest_isa_2_06_part1.c1505 int i, condreg, repeat = 0; local
1514 if (!repeat) {
1515 repeat = 1;
1529 if (!repeat) {
1530 repeat = 1;
1608 if (repeat) {
1658 if (repeat) {
1659 repeat = 0;
1967 repeat:
1993 goto repeat;
[all...]
/external/valgrind/none/tests/ppc64/
H A Dtest_dfp1.c328 int i, repeat = 1; local
381 if (repeat) {
382 repeat = 0;
H A Dtest_isa_2_06_part1.c1505 int i, condreg, repeat = 0; local
1514 if (!repeat) {
1515 repeat = 1;
1529 if (!repeat) {
1530 repeat = 1;
1608 if (repeat) {
1658 if (repeat) {
1659 repeat = 0;
1967 repeat:
1993 goto repeat;
[all...]
/external/guava/guava-tests/benchmark/com/google/common/base/
H A DStringsRepeatBenchmark.java25 * Microbenchmark for {@link Strings#repeat}
36 originalString = Strings.repeat("x", length);
/external/brotli/java/org/brotli/dec/
H A DDecode.java176 int repeat = 0;
190 repeat = 0;
203 repeat = 0;
206 int oldRepeat = repeat;
207 if (repeat > 0) {
208 repeat -= 2;
209 repeat <<= extraBits;
211 repeat += BitReader.readBits(br, extraBits) + 3;
212 int repeatDelta = repeat - oldRepeat;
/external/deqp/modules/gles2/performance/
H A Des2pShaderOptimizationTests.cpp67 static inline string repeat (const string& str, int numRepeats, const string& delim = "") function in namespace:deqp::gles2::Performance
570 " value = " + repeat("d", numTopLevelRepeats, "+") + ";\n"
572 : " value = " + repeat("fract(sin(value) + cos(sin(value))) + sqrt(sin(value) + exp(cos(sin(value))))", numTopLevelRepeats, "\n\t + ") + ";\n";
584 + repeat("\tvalue += a*b;\n", numTopLevelRepeats)
607 + repeat(" value += a*b;\n", numTopLevelRepeats);
778 + repeat(" unused = sin(sin(sin(sin(unused))));\n", numSinRows) +
810 + repeat(" unused = sin(sin(sin(sin(unused))));\n", numSinRows) +
831 + repeat(" unused = sin(sin(sin(sin(unused))));\n", numSinRows) +
846 + repeat(" unused = sin(sin(sin(sin(unused))));\n", numSinRows) +
/external/deqp/modules/gles3/performance/
H A Des3pShaderOptimizationTests.cpp67 static inline string repeat (const string& str, int numRepeats, const string& delim = "") function in namespace:deqp::gles3::Performance
581 " value = " + repeat("d", numTopLevelRepeats, "+") + ";\n"
583 : " value = " + repeat("fract(sin(value) + cos(sin(value))) + sqrt(sin(value) + exp(cos(sin(value))))", numTopLevelRepeats, "\n\t + ") + ";\n";
595 + repeat("\tvalue += a*b;\n", numTopLevelRepeats)
618 + repeat(" value += a*b;\n", numTopLevelRepeats);
789 + repeat(" unused = sin(sin(sin(sin(unused))));\n", numSinRows) +
821 + repeat(" unused = sin(sin(sin(sin(unused))));\n", numSinRows) +
842 + repeat(" unused = sin(sin(sin(sin(unused))));\n", numSinRows) +
857 + repeat(" unused = sin(sin(sin(sin(unused))));\n", numSinRows) +
/external/brotli/dec/
H A Ddecode.c455 A) reset the repeat variable
462 uint32_t* symbol, uint32_t* repeat, uint32_t* space,
465 *repeat = 0;
478 A) Check if it is the extension of previous repeat sequence; if the decoded
481 B) Update repeat variable
490 uint32_t* repeat, uint32_t* space, uint32_t* prev_code_len,
501 *repeat = 0;
504 old_repeat = *repeat;
505 if (*repeat > 0) {
506 *repeat
461 ProcessSingleCodeLength(uint32_t code_len, uint32_t* symbol, uint32_t* repeat, uint32_t* space, uint32_t* prev_code_len, uint16_t* symbol_lists, uint16_t* code_length_histo, int* next_symbol) argument
488 ProcessRepeatedCodeLength(uint32_t code_len, uint32_t repeat_delta, uint32_t alphabet_size, uint32_t* symbol, uint32_t* repeat, uint32_t* space, uint32_t* prev_code_len, uint32_t* repeat_code_len, uint16_t* symbol_lists, uint16_t* code_length_histo, int* next_symbol) argument
540 uint32_t repeat = s->repeat; local
[all...]
/external/brotli/research/
H A Dbrotlidump.py13 from itertools import accumulate, repeat namespace
423 repeat(len),
1505 #scan series of 16s (repeat counts)
1506 #start with repeat count 2
1507 repeat = 2
1518 oldRepeat = repeat
1519 repeat = (repeat-2<<2)+extra+3
1520 #read as many symbols as repeat increased
1521 for i in range(oldRepeat, repeat)
[all...]
/external/sonivox/jet_tools/JetCreator/
H A DJetPreview.py118 self.segment.repeat,
135 self.queueSegs.append(QueueSeg(self.segment.segname, userID, seg_num, dls_num, self.segment.repeat, self.segment.transpose, self.segment.mute_flags))
/external/dng_sdk/source/
H A Ddng_pixel_buffer.cpp1281 dng_point repeat = srcArea.Size (); local
1311 repeat.v,
1312 repeat.h,
1331 repeat.v,
1332 repeat.h,
1351 repeat.v,
1352 repeat.h,
H A Ddng_image.cpp274 // buffer, we can just repeat that.
291 dng_point repeat = srcArea.Size (); local
305 int32 splitV = newArea.t + repeat.v - phase.v;
306 int32 splitH = newArea.l + repeat.h - phase.h;
/external/gemmlowp/test/
H A Dbenchmark.cc173 const int repeat = 2; local
185 for (int r = 0; r < repeat + 1; r++) {
186 std::cout << "repetition " << r + 1 << "/" << repeat + 1 << "...\r"
/external/llvm/utils/unittest/googletest/src/
H A Dgtest-port.cc290 // or \c otherwise. repeat is the repetition meta character (?, *,
296 bool escaped, char c, char repeat, const char* regex,
298 const size_t min_count = (repeat == '+') ? 1 : 0;
299 const size_t max_count = (repeat == '?') ? 1 :
295 MatchRepetitionAndRegexAtHead( bool escaped, char c, char repeat, const char* regex, const char* str) argument
/external/protobuf/gtest/src/
H A Dgtest-port.cc288 // or \c otherwise. repeat is the repetition meta character (?, *,
294 bool escaped, char c, char repeat, const char* regex,
296 const size_t min_count = (repeat == '+') ? 1 : 0;
297 const size_t max_count = (repeat == '?') ? 1 :
293 MatchRepetitionAndRegexAtHead( bool escaped, char c, char repeat, const char* regex, const char* str) argument

Completed in 3249 milliseconds

1234567891011>>