Searched defs:inc (Results 26 - 50 of 168) sorted by relevance

1234567

/external/harfbuzz_ng/src/
H A Dhb-atomic-private.hh180 inline int inc (void) { return hb_atomic_int_impl_add (const_cast<hb_atomic_int_impl_t &> (v), 1); } function in struct:hb_atomic_int_t
H A Dhb-object-private.hh54 inline int inc (void) { return ref_count.inc (); } function in struct:hb_reference_count_t
155 obj->header.ref_count.inc ();
/external/libdrm/tests/planetest/
H A Dplanetest.c26 static void incrementor(int *inc, int *val, int increment, int lower, int upper) argument
28 if(*inc > 0)
29 *inc = *val + increment >= upper ? -1 : 1;
31 *inc = *val - increment <= lower ? 1 : -1;
32 *val += *inc * increment;
H A Datomictest.c32 static void incrementor(int *inc, int *val, int increment, int lower, int upper) argument
34 if(*inc > 0)
35 *inc = *val + increment >= upper ? -1 : 1;
37 *inc = *val - increment <= lower ? 1 : -1;
38 *val += *inc * increment;
/external/libopus/celt/tests/
H A Dtest_unit_cwrs32.c101 opus_uint32 inc; local
112 inc=nc/20000;
113 if(inc<1)inc=1;
114 for(i=0;i<nc;i+=inc){
/external/skia/src/core/
H A DSkCachedData.cpp17 static void inc() { function
19 SkDebugf("SkCachedData inc %d\n", oldCount + 1);
27 static void inc() {} function
40 inc();
52 inc();
/external/skia/tools/viewer/
H A DStatsLayer.cpp101 double inc = 0; local
109 inc += fTimers[timer].fTimes[i];
113 if (inc > 0) {
114 ms += inc;
/external/skqp/src/core/
H A DSkCachedData.cpp17 static void inc() { function
19 SkDebugf("SkCachedData inc %d\n", oldCount + 1);
27 static void inc() {} function
40 inc();
52 inc();
/external/skqp/tools/viewer/
H A DStatsLayer.cpp101 double inc = 0; local
109 inc += fTimers[timer].fTimes[i];
113 if (inc > 0) {
114 ms += inc;
/external/syslinux/com32/modules/
H A Dprdhcp.c68 int inc; local
71 inc = KEY_NONE;
72 while (inc == KEY_NONE)
73 inc = get_key(stdin, 6000);
75 return inc;
/external/boringssl/mac-x86_64/crypto/fipsmodule/
H A Drsaz-avx2.S1607 leaq L$inc(%rip),%r10
1738 L$inc:
/external/boringssl/src/crypto/x509/
H A Dx509name.c229 int n, i, inc; local
246 inc = 1;
249 inc = 0;
260 inc = (set == 0) ? 1 : 0;
270 if (inc) {
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_interface_java.cc140 uptr inc = 1; local
145 inc = -1;
147 for (; s != send; s += inc, d += inc) {
/external/freetype/src/cid/
H A Dcidgload.c62 FT_Incremental_InterfaceRec *inc = local
73 if ( inc )
78 error = inc->funcs->get_glyph_data( inc->object,
95 inc->funcs->free_glyph_data( inc->object, &glyph_data );
234 if ( !error && inc && inc->funcs->get_glyph_metrics )
244 error = inc->funcs->get_glyph_metrics( inc
[all...]
/external/freetype/src/type1/
H A Dt1gload.c57 FT_Incremental_InterfaceRec *inc = local
72 if ( inc )
73 error = inc->funcs->get_glyph_data( inc->object,
140 if ( !error && inc && inc->funcs->get_glyph_metrics )
150 error = inc->funcs->get_glyph_metrics( inc->object,
/external/guice/core/test/com/google/inject/internal/
H A DProxyFactoryTest.java180 counter.inc();
205 void inc() { method in class:ProxyFactoryTest.Counter
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/
H A DTestUtil.java141 synchronized void inc() { method in class:TestUtil.Lock
174 lock.inc();
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/test/
H A DTestUtil.java138 synchronized void inc() { method in class:TestUtil.Lock
171 lock.inc();
/external/jsilver/src/com/google/clearsilver/jsilver/template/
H A DHtmlWhiteSpaceStripper.java234 private int updateScope(int current, int inc) { argument
235 current += inc;
247 int inc = inOpenTag ? 1 : -1;
249 textAreaScope = updateScope(textAreaScope, inc);
251 preScope = updateScope(preScope, inc);
253 verbatimScope = updateScope(verbatimScope, inc);
255 scriptScope = updateScope(scriptScope, inc);
/external/libpcap/
H A Dpcap-enet.c53 register int inc; local
86 inc = ph->length.PacketOffset;
87 cc -= inc;
88 bp += inc;
/external/python/cpython3/Lib/test/
H A Dtest_atexit.py100 def inc(): function in function:GeneralTest.test_stress
104 atexit.register(inc)
111 def inc(): function in function:GeneralTest.test_clear
114 atexit.register(inc)
122 def inc(): function in function:GeneralTest.test_unregister
128 atexit.register(inc)
130 atexit.unregister(inc)
/external/skia/gm/
H A Dyuvtorgbeffect.cpp63 const int inc[] = {1, -1, 1}; variable
68 color[i] = (color[i] == limit[i]) ? invl[i] : color[i] + inc[i];
180 const int inc[] = {1, -1, 1}; variable
187 color[0] = (color[0] == limit[0]) ? invl[0] : color[0] + inc[0];
196 color[1] = (color[1] == limit[1]) ? invl[1] : color[1] + inc[1];
197 color[2] = (color[2] == limit[2]) ? invl[2] : color[2] + inc[2];
/external/skia/tests/
H A DFontMgrAndroidParserTest.cpp117 double low, double high, double inc)
123 for (double f = low; f < high; f += inc) {
116 test_parse_fixed_r(skiatest::Reporter* reporter, double low, double high, double inc) argument
/external/skqp/gm/
H A Dyuvtorgbeffect.cpp63 const int inc[] = {1, -1, 1}; variable
68 color[i] = (color[i] == limit[i]) ? invl[i] : color[i] + inc[i];
179 const int inc[] = {1, -1, 1}; variable
186 color[0] = (color[0] == limit[0]) ? invl[0] : color[0] + inc[0];
195 color[1] = (color[1] == limit[1]) ? invl[1] : color[1] + inc[1];
196 color[2] = (color[2] == limit[2]) ? invl[2] : color[2] + inc[2];
/external/skqp/tests/
H A DFontMgrAndroidParserTest.cpp117 double low, double high, double inc)
123 for (double f = low; f < high; f += inc) {
116 test_parse_fixed_r(skiatest::Reporter* reporter, double low, double high, double inc) argument

Completed in 3737 milliseconds

1234567