/external/harfbuzz_ng/src/ |
H A D | hb-atomic-private.hh | 180 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 D | hb-object-private.hh | 54 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 D | planetest.c | 26 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 D | atomictest.c | 32 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 D | test_unit_cwrs32.c | 101 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 D | SkCachedData.cpp | 17 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 D | StatsLayer.cpp | 101 double inc = 0; local 109 inc += fTimers[timer].fTimes[i]; 113 if (inc > 0) { 114 ms += inc;
|
/external/skqp/src/core/ |
H A D | SkCachedData.cpp | 17 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 D | StatsLayer.cpp | 101 double inc = 0; local 109 inc += fTimers[timer].fTimes[i]; 113 if (inc > 0) { 114 ms += inc;
|
/external/syslinux/com32/modules/ |
H A D | prdhcp.c | 68 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 D | rsaz-avx2.S | 1607 leaq L$inc(%rip),%r10 1738 L$inc:
|
/external/boringssl/src/crypto/x509/ |
H A D | x509name.c | 229 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 D | tsan_interface_java.cc | 140 uptr inc = 1; local 145 inc = -1; 147 for (; s != send; s += inc, d += inc) {
|
/external/freetype/src/cid/ |
H A D | cidgload.c | 62 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 D | t1gload.c | 57 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 D | ProxyFactoryTest.java | 180 counter.inc(); 205 void inc() { method in class:ProxyFactoryTest.Counter
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/ |
H A D | TestUtil.java | 141 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 D | TestUtil.java | 138 synchronized void inc() { method in class:TestUtil.Lock 171 lock.inc();
|
/external/jsilver/src/com/google/clearsilver/jsilver/template/ |
H A D | HtmlWhiteSpaceStripper.java | 234 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 D | pcap-enet.c | 53 register int inc; local 86 inc = ph->length.PacketOffset; 87 cc -= inc; 88 bp += inc;
|
/external/python/cpython3/Lib/test/ |
H A D | test_atexit.py | 100 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 D | yuvtorgbeffect.cpp | 63 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 D | FontMgrAndroidParserTest.cpp | 117 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 D | yuvtorgbeffect.cpp | 63 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 D | FontMgrAndroidParserTest.cpp | 117 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
|