HomeSort by relevance Sort by last modified time
    Searched refs:comp (Results 126 - 150 of 706) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/util/
UnicodePropertySymbolTable.java 233 int comp = comparator.compare(pattern, value.toString()); local
235 case less: return comp < 0;
236 case leq: return comp <= 0;
237 default: return comp == 0;
238 case geq: return comp >= 0;
239 case greater: return comp > 0;
  /frameworks/rs/cpu_ref/
rsCpuIntrinsics_neon_Resize.S 143 .irp comp, 1, 2, 4
144 .if \comp == 1
146 .elseif \comp == 2
148 .elseif \comp == 4
163 /* void rsdIntrinsicResizeB\comp\()_K(
177 ENTRY(rsdIntrinsicResizeB\comp\()_K)
241 .if \comp == 1
247 .elseif \comp == 2
253 .elseif \comp == 4
318 .if \comp ==
    [all...]
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/zip/
GZIPInputStreamTest.java 164 byte[] comp = bout.toByteArray();
166 comp), 512);
175 gin2 = new GZIPInputStream(new ByteArrayInputStream(comp), 512);
184 gin2 = new GZIPInputStream(new ByteArrayInputStream(comp), 516);
193 comp[40] = 0;
194 gin2 = new GZIPInputStream(new ByteArrayInputStream(comp), 512);
  /external/libgdx/gdx/jni/gdx2d/
stb_image.h 30 GIF (*comp always reports as 4-channel)
153 2.06 (2015-04-19) fix bug where PSD returns wrong '*comp' value
235 // - GIF always returns *comp=4
249 // int *comp -- outputs # of image components in image file
258 // components N is 'req_comp' if req_comp is non-zero, or *comp otherwise.
259 // If req_comp is non-zero, *comp has the number of components that _would_
261 // get RGBA output, but you can check *comp to see if it's trivially opaque
267 // N=#comp components
274 // and *x, *y, *comp will be unchanged. The function stbi_failure_reason()
442 STBIDEF stbi_uc *stbi_load (char const *filename, int *x, int *y, int *comp, int req_comp)
4344 int comp,filter; local
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_encodemv.c 33 static void encode_mv_component(vpx_writer* w, int comp,
36 const int sign = comp < 0;
37 const int mag = sign ? -comp : comp;
43 assert(comp != 0);
173 nmv_component *comp = &mvc->comps[i]; local
176 update_mv(w, comp_counts->sign, &comp->sign, MV_UPDATE_PROB);
177 write_mv_update(vp9_mv_class_tree, comp->classes, comp_counts->classes,
179 write_mv_update(vp9_mv_class0_tree, comp->class0, comp_counts->class0,
182 update_mv(w, comp_counts->bits[j], &comp->bits[j], MV_UPDATE_PROB)
    [all...]
  /external/opencv/cv/src/
cvpyrsegmentation.cpp 1428 CvConnectedComp comp; local
1476 CvConnectedComp comp; local
1607 CvConnectedComp comp; local
1659 CvConnectedComp comp; local
    [all...]
  /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);
  /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);
  /cts/tests/tests/media/src/android/media/cts/
DecodeAccuracyTestBase.java 1561 final double[] comp = {Color.red(rgbColor), Color.green(rgbColor), Color.blue(rgbColor)}; local
    [all...]

Completed in 772 milliseconds

1 2 3 4 56 7 8 91011>>