Searched defs:repeat (Results 101 - 125 of 147) sorted by relevance

123456

/external/webp/src/dec/
H A Dvp8l.c223 int repeat = VP8LReadBits(br, extra_bits) + repeat_offset; local
224 if (symbol + repeat > num_symbols) {
229 while (repeat-- > 0) code_lengths[symbol++] = length;
/external/chromium_org/third_party/libxml/src/
H A Druntest.c3948 unsigned int i, repeat; local
3956 for (repeat = 0; repeat < 500; repeat++) {
4009 unsigned int i, repeat; local
4016 for (repeat = 0; repeat < TEST_REPEAT_COUNT; repeat++) {
4074 unsigned int i, repeat; local
4081 for (repeat
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/
H A Dsp_tex_sample.c110 * Compute coord % size for repeat wrap modes.
116 repeat(int coord, unsigned size) function
137 *icoord = repeat(i, size);
269 *icoord0 = repeat(util_ifloor(u), size);
270 *icoord1 = repeat(*icoord0 + 1, size);
/external/mesa3d/src/gallium/drivers/softpipe/
H A Dsp_tex_sample.c110 * Compute coord % size for repeat wrap modes.
116 repeat(int coord, unsigned size) function
137 *icoord = repeat(i, size);
269 *icoord0 = repeat(util_ifloor(u), size);
270 *icoord1 = repeat(*icoord0 + 1, size);
/external/pixman/pixman/
H A Dpixman-private.h106 pixman_repeat_t repeat; member in struct:image_common
331 pixman_repeat_t repeat; member in struct:__anon28844
339 pixman_repeat_t repeat);
/external/chromium_org/testing/gtest/test/
H A Dgtest_unittest.cc50 || testing::GTEST_FLAG(repeat) > 0
215 using testing::GTEST_FLAG(repeat);
1541 GTEST_FLAG(repeat) = 1;
1568 EXPECT_EQ(1, GTEST_FLAG(repeat));
1584 GTEST_FLAG(repeat) = 100;
5399 repeat(1),
5481 static Flags Repeat(Int32 repeat) { argument
5483 flags.repeat = repeat;
5529 Int32 repeat; member in struct:testing::Flags
[all...]
/external/gtest/test/
H A Dgtest_unittest.cc50 || testing::GTEST_FLAG(repeat) > 0
215 using testing::GTEST_FLAG(repeat);
1548 GTEST_FLAG(repeat) = 1;
1575 EXPECT_EQ(1, GTEST_FLAG(repeat));
1591 GTEST_FLAG(repeat) = 100;
5290 repeat(1),
5372 static Flags Repeat(Int32 repeat) { argument
5374 flags.repeat = repeat;
5420 Int32 repeat; member in struct:testing::Flags
[all...]
/external/protobuf/gtest/test/
H A Dgtest_unittest.cc50 || testing::GTEST_FLAG(repeat) > 0
133 using testing::GTEST_FLAG(repeat);
2023 GTEST_FLAG(repeat) = 1;
2048 EXPECT_EQ(1, GTEST_FLAG(repeat));
2062 GTEST_FLAG(repeat) = 100;
5216 repeat(1),
5296 static Flags Repeat(Int32 repeat) { argument
5298 flags.repeat = repeat;
5328 Int32 repeat; member in struct:testing::Flags
[all...]
/external/chromium_org/testing/gtest/src/
H A Dgtest.cc254 repeat,
255 internal::Int32FromGTestEnv("repeat", 1),
256 "How many times to repeat each test. Specify a negative number "
3008 if (GTEST_FLAG(repeat) != 1)
4555 // How many times to repeat the tests? We don't want to repeat them
4557 const int repeat = in_subprocess_for_death_test ? 1 : GTEST_FLAG(repeat); local
4558 // Repeats forever if the repeat count is negative.
4559 const bool forever = repeat <
[all...]
/external/chromium_org/third_party/WebKit/Source/core/css/parser/
H A DCSSPropertyParser.cpp3578 if (currentValue->unit == CSSParserValue::Function && equalIgnoringCase(currentValue->function->name, "repeat")) {
3611 // The spec allows us to clamp the number of repetitions: http://www.w3.org/TR/css-grid-1/#repeat-notation
3648 // parseGridTrackSize iterated over the repeat arguments, move to the next value.
5675 void commitRepeat(PassRefPtrWillBeRawPtr<CSSValue> repeat) argument
5677 m_repeat = repeat;
5772 RefPtrWillBeRawPtr<CSSValue> repeat = nullptr; local
5773 if (parser.parseBorderImageRepeat(repeat))
5774 context.commitRepeat(repeat.release());
5901 // We need to clone and repeat values for any omissions.
6016 // We need to clone and repeat value
[all...]
/external/chromium_org/third_party/mesa/src/src/gtest/src/
H A Dgtest.cc243 repeat,
244 internal::Int32FromGTestEnv("repeat", 1),
245 "How many times to repeat each test. Specify a negative number "
2717 if (GTEST_FLAG(repeat) != 1)
4201 // How many times to repeat the tests? We don't want to repeat them
4203 const int repeat = in_subprocess_for_death_test ? 1 : GTEST_FLAG(repeat); local
4204 // Repeats forever if the repeat count is negative.
4205 const bool forever = repeat <
[all...]
/external/gtest/src/
H A Dgtest.cc250 repeat,
251 internal::Int32FromGTestEnv("repeat", 1),
252 "How many times to repeat each test. Specify a negative number "
2721 if (GTEST_FLAG(repeat) != 1)
4279 // How many times to repeat the tests? We don't want to repeat them
4281 const int repeat = in_subprocess_for_death_test ? 1 : GTEST_FLAG(repeat); local
4282 // Repeats forever if the repeat count is negative.
4283 const bool forever = repeat <
[all...]
/external/llvm/utils/unittest/googletest/src/
H A Dgtest.cc243 repeat,
244 internal::Int32FromGTestEnv("repeat", 1),
245 "How many times to repeat each test. Specify a negative number "
2689 if (GTEST_FLAG(repeat) != 1)
4169 // How many times to repeat the tests? We don't want to repeat them
4171 const int repeat = in_subprocess_for_death_test ? 1 : GTEST_FLAG(repeat); local
4172 // Repeats forever if the repeat count is negative.
4173 const bool forever = repeat <
[all...]
/external/mdnsresponder/mDNSCore/
H A DmDNS.c2946 // treat this as logically a repeat of the last transmission, without advancing the interval
7097 int repeat = 0; local
7127 // To do this we set the repeat count so the while loop below will make a series of negative cache entries for us
7134 repeat = qcount - 1 - scount;
7168 if (!repeat) break;
7169 repeat--;
/external/mesa3d/src/gtest/src/
H A Dgtest.cc243 repeat,
244 internal::Int32FromGTestEnv("repeat", 1),
245 "How many times to repeat each test. Specify a negative number "
2717 if (GTEST_FLAG(repeat) != 1)
4201 // How many times to repeat the tests? We don't want to repeat them
4203 const int repeat = in_subprocess_for_death_test ? 1 : GTEST_FLAG(repeat); local
4204 // Repeats forever if the repeat count is negative.
4205 const bool forever = repeat <
[all...]
/external/pcre/dist/
H A Dpcre_jit_compile.c951 /* Already detected repeat. */
1094 based single character repeat is allowed. */
3189 int len, repeat, len_save, consumed = 0; local
3200 repeat = 1;
3250 repeat = GET2(cc, 1);
3382 repeat = GET2(cc, 1);
3392 repeat = GET2(cc, 1);
3424 while (--repeat > 0);
3426 repeat = 1;
3504 if (--repeat
[all...]
/external/protobuf/gtest/src/
H A Dgtest.cc227 repeat,
228 internal::Int32FromGTestEnv("repeat", 1),
229 "How many times to repeat each test. Specify a negative number "
2665 if (GTEST_FLAG(repeat) != 1)
3962 // How many times to repeat the tests? We don't want to repeat them
3964 const int repeat = in_subprocess_for_death_test ? 1 : GTEST_FLAG(repeat); local
3965 // Repeats forever if the repeat count is negative.
3966 const bool forever = repeat <
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/third_party/googletest/src/src/
H A Dgtest-all.cc499 const char kRepeatFlag[] = "repeat";
578 repeat_ = GTEST_FLAG(repeat);
599 GTEST_FLAG(repeat) = repeat_;
1356 bool escaped, char ch, char repeat, const char* regex, const char* str);
1734 repeat,
1735 internal::Int32FromGTestEnv("repeat", 1),
1736 "How many times to repeat each test. Specify a negative number "
4205 if (GTEST_FLAG(repeat) != 1)
5763 // How many times to repeat the tests? We don't want to repeat the
5765 const int repeat = in_subprocess_for_death_test ? 1 : GTEST_FLAG(repeat); local
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/include/
H A Dsvga3d_reg.h482 uint16 repeat; member in struct:__anon13943::__anon13944
/external/libpng/contrib/libtests/
H A Dpngvalid.c1874 unsigned int repeat :1; /* Repeat this transform test. */ member in struct:png_modifier
2000 pm->repeat = 0;
2300 * After the function has been called the 'repeat' flag will still be set; the
2324 if (!pm->repeat && /* Else something needs the current encoding again. */
2330 pm->encoding_counter = 0; /* This will stop the repeat */
2345 pm->repeat = 1;
2348 else if (!pm->repeat)
6720 * so repeat if it is set. If a test fails this may mean we subsequently
6724 pm->repeat = data.coefficients_overridden != 0;
7670 pm->repeat
[all...]
/external/libvpx/libvpx/third_party/googletest/src/src/
H A Dgtest-all.cc499 const char kRepeatFlag[] = "repeat";
578 repeat_ = GTEST_FLAG(repeat);
599 GTEST_FLAG(repeat) = repeat_;
1356 bool escaped, char ch, char repeat, const char* regex, const char* str);
1734 repeat,
1735 internal::Int32FromGTestEnv("repeat", 1),
1736 "How many times to repeat each test. Specify a negative number "
4205 if (GTEST_FLAG(repeat) != 1)
5763 // How many times to repeat the tests? We don't want to repeat the
5765 const int repeat = in_subprocess_for_death_test ? 1 : GTEST_FLAG(repeat); local
[all...]
/external/mesa3d/src/gallium/drivers/svga/include/
H A Dsvga3d_reg.h482 uint16 repeat; member in struct:__anon27354::__anon27355
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dcommons-lang-2.6.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/commons/ org/apache/commons/lang/ ...
/external/dexmaker/lib/
H A Djunit.jarMETA-INF/ META-INF/MANIFEST.MF junit/ junit/awtui/ junit/extensions/ junit/framework/ junit/runner/ junit/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.junit_3.8.2.v3_8_2_v20100427-1100/
H A Djunit.jarMETA-INF/ META-INF/MANIFEST.MF junit/ junit3.8.2/ junit/awtui/ junit/extensions/ junit/framework/ ...

Completed in 1988 milliseconds

123456