/external/deqp/framework/randomshaders/ |
rsgExpression.cpp | 700 ConstValueRangeAccess comp = m_valueRange.asAccess().component(curScalarNdx); local 707 if (isConversionOk(VariableType::TYPE_FLOAT, baseType, comp)) inTypes[numInTypes++] = VariableType::TYPE_FLOAT; 708 if (isConversionOk(VariableType::TYPE_INT, baseType, comp)) inTypes[numInTypes++] = VariableType::TYPE_INT; 709 if (isConversionOk(VariableType::TYPE_BOOL, baseType, comp)) inTypes[numInTypes++] = VariableType::TYPE_BOOL; 718 convertValueRange(comp, inValueRange); 725 m_inputValueRanges.push_back(ValueRange(comp)); [all...] |
/external/libpng/ |
pngwutil.c | 479 png_text_compress_init(compression_state *comp, png_const_bytep input, 482 comp->input = input; 483 comp->input_len = input_len; 484 comp->output_len = 0; 490 compression_state *comp, png_uint_32 prefix_len) 504 ret = png_deflate_claim(png_ptr, chunk_name, comp->input_len); 517 png_alloc_size_t input_len = comp->input_len; /* may be zero! */ 521 png_ptr->zstream.next_in = PNGZ_INPUT_CAST(comp->input); 523 png_ptr->zstream.next_out = comp->output; 524 png_ptr->zstream.avail_out = (sizeof comp->output) 1117 compression_state comp; local 1550 compression_state comp; local 1602 compression_state comp; local [all...] |
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/normalizer/ |
TestCanonicalIterator.java | 203 String comp = Normalizer.compose(s, false); local 207 if (s.equals(decomp) && s.equals(comp)) return; 216 if (item.equals(comp)) gotComp = true; 225 + (item.equals(comp) ? "\t(*comp*)" : "") 256 errln("FAIL CanonicalIterator: " + s + " decomp: " +decomp+" comp: "+comp);
|
TestDeprecatedNormalizerAPI.java | 157 String comp = Normalizer.compose(decomp, compat); local 167 if (!comp.equals(chStr)) { 169 + " --> " + hex(comp));
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/ |
TestCanonicalIterator.java | 199 String comp = Normalizer.compose(s, false); local 203 if (s.equals(decomp) && s.equals(comp)) return; 212 if (item.equals(comp)) gotComp = true; 221 + (item.equals(comp) ? "\t(*comp*)" : "") 252 errln("FAIL CanonicalIterator: " + s + " decomp: " +decomp+" comp: "+comp);
|
TestDeprecatedNormalizerAPI.java | 153 String comp = Normalizer.compose(decomp, compat); local 163 if (!comp.equals(chStr)) { 165 + " --> " + hex(comp));
|
/external/vboot_reference/tests/bitmaps/ |
TestBmpBlock.py | 93 def doPackUnpackZ(self, comp): 95 rc, out, err = runprog(prog, '-z', comp, '-c', 'case_simple.yaml', 'FOO') 100 rc, out, err = runprog(prog, '-z', comp, '-c', 'config.yaml', 'BAR') 114 def doPackUnpackImplicitZ(self, comp, noncomp): 117 rc, out, err = runprog(prog, '-z', comp, '-c', 'case_simple.yaml', 'FOO')
|
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/ |
motion_est.cpp | 30 /* 1: bias (0,0)MV after full-pel search, before half-pel, highest comp */ 31 /* 2: bias (0,0)MV after half-pel, high comp, better PSNR */ 142 Int i, j, comp; local 327 for (comp = 1; comp <= 4; comp++) 329 mot_mb[comp].x = 0; 330 mot_mb[comp].y = 0; 434 for (comp = 1; comp <= 4; comp++ 788 Int comp; local [all...] |
/external/mesa3d/src/gallium/drivers/softpipe/ |
sp_quad_blend.c | 323 float comp[4]; local 324 VEC4_SCALAR(comp, const_blend_color[0]); /* R */ 325 VEC4_MUL(source[0], quadColor[0], comp); /* R */ 326 VEC4_SCALAR(comp, const_blend_color[1]); /* G */ 327 VEC4_MUL(source[1], quadColor[1], comp); /* G */ 328 VEC4_SCALAR(comp, const_blend_color[2]); /* B */ 329 VEC4_MUL(source[2], quadColor[2], comp); /* B */ 474 float comp[4]; local 475 VEC4_SCALAR(comp, const_blend_color[3]); /* A */ 476 VEC4_MUL(source[3], quadColor[3], comp); /* A * 578 float comp[4]; local 589 float comp[4]; local 722 float comp[4]; local [all...] |
/external/mesa3d/src/mesa/main/ |
texparam.c | 188 comp_to_swizzle(GLenum comp) 190 switch (comp) { 210 set_swizzle_component(GLuint *swizzle, GLuint comp, GLuint swz) 212 ASSERT(comp < 4); 215 GLuint mask = 0x7 << (3 * comp); 216 GLuint s = (*swizzle & ~mask) | (swz << (3 * comp)); 449 const GLuint comp = pname - GL_TEXTURE_SWIZZLE_R_EXT; local 456 ASSERT(comp < 4); 459 texObj->Swizzle[comp] = params[0]; 460 set_swizzle_component(&texObj->_Swizzle, comp, swz) 468 GLuint comp; local 1431 GLuint comp; local [all...] |
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
SortedSetRelation.java | 107 int comp = aa.compareTo(bb); local 108 if (comp == 0) { 118 } else if (comp < 0) {
|
/external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/impl/ |
DemoUtility.java | 78 public static void setInsets(Container cont, Component comp, Insets insets) { 80 GridBagConstraints g = gbl.getConstraints(comp); 82 gbl.setConstraints(comp,g);
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
SortedSetRelation.java | 105 int comp = aa.compareTo(bb); local 106 if (comp == 0) { 116 } else if (comp < 0) {
|
/external/libxml2/include/libxml/ |
xmlregexp.h | 55 xmlRegexpExec (xmlRegexpPtr comp, 61 xmlRegexpIsDeterminist(xmlRegexpPtr comp); 81 xmlRegNewExecCtxt (xmlRegexpPtr comp,
|
/external/webrtc/webrtc/voice_engine/test/auto_test/ |
voe_conference_test.cc | 23 bool IsNear(int ref, int comp, int error) { 24 return (ref - comp <= error) && (comp - ref >= -error);
|
/libcore/luni/src/test/java/libcore/java/util/zip/ |
OldAndroidDeflateTest.java | 77 byte[] comp = new byte[128 * 1024 + 512]; 84 compress(deflater, input, comp); 85 expand(inflater, comp, (int) deflater.getBytesWritten(), output);
|
/frameworks/rs/cpu_ref/ |
rsCpuIntrinsics_advsimd_Resize.S | 126 .irp comp, 1, 2, 4 127 .if \comp == 1 129 .elseif \comp == 2 131 .elseif \comp == 4 155 ENTRY(rsdIntrinsicResizeB\comp\()_K) 211 .if \comp == 1 217 .elseif \comp == 2 223 .elseif \comp == 4 283 .if \comp == 4 303 .if \comp == [all...] |
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/ |
TreeSetTest.java | 93 ReversedIntegerComparator comp = new ReversedIntegerComparator(); local 94 TreeSet myTreeSet = new TreeSet(comp); 104 .comparator() == comp); 163 ReversedIntegerComparator comp = new ReversedIntegerComparator(); local 164 TreeSet myTreeSet = new TreeSet(comp); 166 myTreeSet.comparator() == comp);
|
/device/moto/shamu/camera/QCamera/stack/mm-jpeg-interface/ |
Android.mk | 32 LOCAL_SHARED_LIBRARIES := libdl libcutils liblog libmmstillomx libimage-jpeg-enc-omx-comp
|
/external/drm_hwcomposer/ |
drmresources.cpp | 332 std::unique_ptr<DrmComposition> comp(compositor_.CreateComposition(NULL)); 333 if (!comp) { 337 int ret = comp->SetDisplayMode(display, mode); 342 ret = compositor_.QueueComposition(std::move(comp)); 356 std::unique_ptr<DrmComposition> comp(compositor_.CreateComposition(NULL)); 357 if (!comp) { 361 int ret = comp->SetDpmsMode(display, mode); 367 ret = compositor_.QueueComposition(std::move(comp));
|
/external/libopus/win32/ |
genversion.bat | 38 echo n | comp "%1_temp" "%1" > NUL 2> NUL
|
/external/opencv3/modules/video/include/opencv2/video/ |
tracking_c.h | 149 CvTermCriteria criteria, CvConnectedComp* comp, 155 CvTermCriteria criteria, CvConnectedComp* comp );
|
/prebuilts/gdb/darwin-x86/lib/python2.7/distutils/ |
versionpredicate.py | 13 # (comp) (version) 24 comp, verStr = res.groups() 25 return (comp, distutils.version.StrictVersion(verStr))
|
/prebuilts/gdb/linux-x86/lib/python2.7/distutils/ |
versionpredicate.py | 13 # (comp) (version) 24 comp, verStr = res.groups() 25 return (comp, distutils.version.StrictVersion(verStr))
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/ |
versionpredicate.py | 13 # (comp) (version) 24 comp, verStr = res.groups() 25 return (comp, distutils.version.StrictVersion(verStr))
|