HomeSort by relevance Sort by last modified time
    Searched defs:comp (Results 51 - 75 of 482) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
UnicodeDecompressor.java 129 UnicodeDecompressor comp = new UnicodeDecompressor(); local
137 int charCount = comp.decompress(buffer, start, limit, null,
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/
TestDeprecatedNormalizerAPI.java 153 String comp = Normalizer.compose(decomp, compat); local
163 if (!comp.equals(chStr)) {
165 + " --> " + hex(comp));
  /external/libvpx/libvpx/vp9/common/
vp9_entropymv.c 190 nmv_component *comp = &fc->comps[i]; local
194 comp->sign = mode_mv_merge_probs(pre_comp->sign, c->sign);
196 comp->classes);
198 comp->class0);
201 comp->bits[j] = mode_mv_merge_probs(pre_comp->bits[j], c->bits[j]);
205 c->class0_fp[j], comp->class0_fp[j]);
207 vpx_tree_merge_probs(vp9_mv_fp_tree, pre_comp->fp, c->fp, comp->fp);
210 comp->class0_hp = mode_mv_merge_probs(pre_comp->class0_hp, c->class0_hp);
211 comp->hp = mode_mv_merge_probs(pre_comp->hp, c->hp);
  /external/libxml2/
testRegexp.c 19 static void testRegexp(xmlRegexpPtr comp, const char *value) {
22 ret = xmlRegexpExec(comp, (const xmlChar *) value);
32 xmlRegexpExec(comp, (const xmlChar *) value);
38 xmlRegexpPtr comp = NULL; local
62 if (comp != NULL) {
63 xmlRegFreeRegexp(comp);
64 comp = NULL;
67 comp = xmlRegexpCompile((const xmlChar *) pattern);
68 if (comp == NULL) {
72 } else if (comp == NULL)
271 xmlRegexpPtr comp = NULL; local
    [all...]
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_program_print.c 188 unsigned int comp; local
189 for(comp = 0; comp < 4; ++comp) {
190 rc_swizzle swz = GET_SWZ(swizzle, comp);
191 if (GET_BIT(negate, comp))
  /external/opencv3/3rdparty/include/ffmpeg_/libavutil/
pixdesc.h 86 AVComponentDescriptor comp[4]; member in struct:AVPixFmtDescriptor
  /external/selinux/prebuilts/bin/
sediff.py 38 comp = parser.add_argument_group("component differences") variable
39 comp.add_argument("--common", action="store_true", help="Print common differences")
40 comp.add_argument("-c", "--class", action="store_true", help="Print class differences",
42 comp.add_argument("-t", "--type", action="store_true", help="Print type differences",
44 comp.add_argument("-a", "--attribute", action="store_true", help="Print type attribute differences")
45 comp.add_argument("-r", "--role", action="store_true", help="Print role differences")
46 comp.add_argument("-u", "--user", action="store_true", help="Print user differences")
47 comp.add_argument("-b", "--bool", action="store_true", help="Print Boolean differences",
49 comp.add_argument("--sensitivity", action="store_true", help="Print MLS sensitivity differences")
50 comp.add_argument("--category", action="store_true", help="Print MLS category differences"
    [all...]
  /external/toybox/toys/pending/
tr.c 239 char *comp = xmalloc(256); local
243 else comp[j++] = (char)i;
247 *set = comp;
  /external/vulkan-validation-layers/libs/glm/gtx/
simd_vec4.hpp 67 enum comp enum in namespace:glm
163 template <comp X, comp Y, comp Z, comp W>
165 template <comp X, comp Y, comp Z, comp W>
167 template <comp X, comp Y, comp Z
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
mb_motion_comp.cpp 553 Vop *comp; local
583 comp = video->currVop;
585 c_comp = comp->yChan + offset;
586 cu_comp = comp->uChan + (offset >> 2) + (xpos >> 2);
587 cv_comp = comp->vChan + (offset >> 2) + (xpos >> 2);
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
findhalfpel.cpp 187 Int k, comp; local
207 for (comp = 0; comp < 4; comp++)
215 imin = xpos + ((comp & 1) << 3) + (mot[comp+1].x >> 1);
216 jmin = ypos + ((comp & 2) << 2) + (mot[comp+1].y >> 1);
217 ilow = xpos + ((comp & 1) << 3) - range;
218 jlow = ypos + ((comp & 2) << 2) - range
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_conceal.c 259 u32 i, j, comp; local
458 for (comp = 0; comp < 2; comp++)
553 pData = data + 256 + comp*64;
  /frameworks/base/core/java/android/database/
CursorJoiner.java 257 int comp = values[index].compareTo(values[index+1]); local
258 if (comp != 0) {
259 return comp < 0 ? -1 : 1;
  /frameworks/base/core/java/android/service/voice/
VoiceInteractionServiceInfo.java 50 public VoiceInteractionServiceInfo(PackageManager pm, ComponentName comp)
52 this(pm, pm.getServiceInfo(comp, PackageManager.GET_META_DATA));
55 public VoiceInteractionServiceInfo(PackageManager pm, ComponentName comp, int userHandle)
57 this(pm, getServiceInfoOrThrow(comp, userHandle));
60 static ServiceInfo getServiceInfoOrThrow(ComponentName comp, int userHandle)
63 ServiceInfo si = AppGlobals.getPackageManager().getServiceInfo(comp,
74 throw new PackageManager.NameNotFoundException(comp.toString());
  /frameworks/base/tools/aapt/
StringPool.cpp 110 int comp = configTypeName.compare(o.configTypeName); local
111 if (comp != 0) {
112 return comp;
118 comp = configs[i].compareLogical(o.configs[i]);
119 if (comp != 0) {
120 return comp;
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/
vp9_entropymv.c 206 nmv_component *comp = &fc->comps[i]; local
210 comp->sign = adapt_prob(pre_comp->sign, c->sign);
212 comp->classes);
213 adapt_probs(vp9_mv_class0_tree, pre_comp->class0, c->class0, comp->class0);
216 comp->bits[j] = adapt_prob(pre_comp->bits[j], c->bits[j]);
220 comp->class0_fp[j]);
222 adapt_probs(vp9_mv_fp_tree, pre_comp->fp, c->fp, comp->fp);
225 comp->class0_hp = adapt_prob(pre_comp->class0_hp, c->class0_hp);
226 comp->hp = adapt_prob(pre_comp->hp, c->hp);
  /hardware/qcom/camera/QCamera2/stack/mm-lib2d-interface/src/
mm_lib2d.c 78 * @comp: component structure handle
87 img_component_ops_t comp; member in struct:mm_lib2d_obj_t
327 p_comp = &lib2d_obj->comp;
449 img_component_ops_t *p_comp = &lib2d_obj->comp;
496 img_component_ops_t *p_comp = &lib2d_obj->comp;
569 LOGE("comp abort failed %d", rc);
  /hardware/qcom/camera/msmcobalt/QCamera2/stack/mm-lib2d-interface/src/
mm_lib2d.c 79 * @comp: component structure handle
88 img_component_ops_t comp; member in struct:mm_lib2d_obj_t
331 p_comp = &lib2d_obj->comp;
453 img_component_ops_t *p_comp = &lib2d_obj->comp;
501 img_component_ops_t *p_comp = &lib2d_obj->comp;
593 LOGE("comp abort failed %d", rc);
  /packages/apps/TV/usbtuner/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
UnicodeDecompressor.java 129 UnicodeDecompressor comp = new UnicodeDecompressor(); local
137 int charCount = comp.decompress(buffer, start, limit, null,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/bits/
stl_queue.h 388 _Compare comp; member in class:priority_queue
398 : c(__s), comp(__x)
399 { std::make_heap(c.begin(), c.end(), comp); }
404 : c(__s), comp(__x)
405 { std::make_heap(c.begin(), c.end(), comp); }
410 : c(std::move(__s)), comp(__x)
411 { std::make_heap(c.begin(), c.end(), comp); }
434 : c(__s), comp(__x)
438 std::make_heap(c.begin(), c.end(), comp);
445 : c(__s), comp(__x
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/bits/
stl_queue.h 388 _Compare comp; member in class:priority_queue
398 : c(__s), comp(__x)
399 { std::make_heap(c.begin(), c.end(), comp); }
404 : c(__s), comp(__x)
405 { std::make_heap(c.begin(), c.end(), comp); }
410 : c(std::move(__s)), comp(__x)
411 { std::make_heap(c.begin(), c.end(), comp); }
434 : c(__s), comp(__x)
438 std::make_heap(c.begin(), c.end(), comp);
445 : c(__s), comp(__x
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
stl_queue.h 388 _Compare comp; member in class:priority_queue
398 : c(__s), comp(__x)
399 { std::make_heap(c.begin(), c.end(), comp); }
404 : c(__s), comp(__x)
405 { std::make_heap(c.begin(), c.end(), comp); }
410 : c(std::move(__s)), comp(__x)
411 { std::make_heap(c.begin(), c.end(), comp); }
434 : c(__s), comp(__x)
438 std::make_heap(c.begin(), c.end(), comp);
445 : c(__s), comp(__x
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
stl_queue.h 388 _Compare comp; member in class:priority_queue
398 : c(__s), comp(__x)
399 { std::make_heap(c.begin(), c.end(), comp); }
404 : c(__s), comp(__x)
405 { std::make_heap(c.begin(), c.end(), comp); }
410 : c(std::move(__s)), comp(__x)
411 { std::make_heap(c.begin(), c.end(), comp); }
434 : c(__s), comp(__x)
438 std::make_heap(c.begin(), c.end(), comp);
445 : c(__s), comp(__x
    [all...]
  /system/bt/stack/btm/
btm_ble_addr.c 221 UINT8 comp[3]; local
224 comp[0] = p_mgnt_cb->random_bda[5];
225 comp[1] = p_mgnt_cb->random_bda[4];
226 comp[2] = p_mgnt_cb->random_bda[3];
230 if (!memcmp(p->param_buf, &comp[0], 3))
  /sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/launch/
NdkDebuggerTab.java 68 Composite comp = new Composite(parent, SWT.NONE); local
69 setControl(comp);
70 comp.setLayout(new GridLayout(1, false));
72 Group grpGdb = new Group(comp, SWT.NONE);
133 Group grpSharedLibraries = new Group(comp, SWT.NONE);

Completed in 747 milliseconds

1 23 4 5 6 7 8 91011>>