/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/ |
mp4dec_lib.h | 85 void doDCACPrediction(VideoDecData *video, int comp, int16 *q_block, 89 void doDCACPrediction_I(VideoDecData *video, int comp, int16 *q_block); 99 void BlockIDCT_intra(MacroBlock *mblock, PIXEL *c_comp, int comp, int width_offset); 266 void Copy_MB_into_Vop(uint8 *comp, int yChan[][NCOEFF_BLOCK], int width); 267 void Copy_B_into_Vop(uint8 *comp, int cChan[], int width); 268 void PutSKIPPED_MB(uint8 *comp, uint8 *c_prev, int width); 269 void PutSKIPPED_B(uint8 *comp, uint8 *c_prev, int width); 314 int VlcDequantMpegIntraBlock(void *video, int comp, int switched, 316 int VlcDequantMpegInterBlock(void *video, int comp, 319 int VlcDequantH263IntraBlock(VideoDecData *video, int comp, int switched [all...] |
idct.cpp | 122 int *blk, uint8 *comp, int width 255 *comp++ = a; 256 *comp++ = a; 257 *comp++ = a; 258 *comp++ = a; 259 *comp++ = a; 260 *comp++ = a; 261 *comp++ = a; 262 *comp++ = a; 264 comp += offset [all...] |
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/detail/ |
binary_search.hpp | 63 const Tp& val, Compare comp) 75 if (comp(*middle, val)) { 113 const Tp& val, Compare comp) 125 if (comp(val, *middle)) 170 Compare comp) 182 if (comp(*middle, val)) { 187 else if (comp(val, *middle)) 190 left = boost::detail::lower_bound(first, middle, val, comp); 192 right = boost::detail::upper_bound(++middle, first, val, comp); 209 Compare comp) { [all...] |
/external/opencv3/modules/imgproc/test/ |
test_floodfill.cpp | 197 CvConnectedComp comp; local 198 cvFloodFill( test_array[INPUT_OUTPUT][0], seed_pt, new_val, l_diff, u_diff, &comp, 200 odata[0] = comp.area; 201 odata[1] = comp.rect.x; 202 odata[2] = comp.rect.y; 203 odata[3] = comp.rect.width; 204 odata[4] = comp.rect.height; 205 odata[5] = comp.value.val[0]; 206 odata[6] = comp.value.val[1]; 207 odata[7] = comp.value.val[2] 516 double* comp = test_mat[REF_OUTPUT][0].ptr<double>(); local [all...] |
/external/drm_hwcomposer/ |
drmcomposition.cpp | 110 DrmDisplayComposition *comp = GetDisplayComposition(display); local 111 ret = comp->Plan(compositor_map[display].squash_state(), &primary_planes_, 125 DrmDisplayComposition *comp = GetDisplayComposition(display); local 132 if (comp->type() == DRM_COMPOSITION_TYPE_EMPTY || 133 comp->type() == DRM_COMPOSITION_TYPE_MODESET) 145 comp->AddPlaneDisable(*iter); 153 comp->AddPlaneDisable(*iter);
|
/external/libavc/test/encoder/ |
recon.c | 59 WORD32 comp; local 66 for(comp = 0; comp < num_comp; comp++) 68 wd = ps_raw_buf->au4_wd[comp]; 69 ht = ps_raw_buf->au4_ht[comp]; 70 pu1_buf = ps_raw_buf->apv_bufs[comp];
|
/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());
|
/external/opencv3/3rdparty/libjasper/ |
jpc_t2enc.c | 163 jpc_enc_tcmpt_t *comp; local 215 comp = &tile->tcmpts[compno]; 216 lvl = &comp->rlvls[lvlno]; 342 comp = &tile->tcmpts[compno]; 343 lvl = &comp->rlvls[lvlno]; 392 jpc_enc_tcmpt_t *comp; local 407 for (comp = tile->tcmpts; comp != endcomps; ++comp) { 408 endlvls = &comp->rlvls[comp->numrlvls] 440 jpc_enc_tcmpt_t *comp; local 488 jpc_enc_tcmpt_t *comp; local [all...] |
/external/slf4j/slf4j-api/src/test/java/org/slf4j/ |
BasicMarkerTest.java | 43 static final String COMP_STR = "COMP"; 53 final Marker comp; field in class:BasicMarkerTest 64 comp = factory.getMarker(COMP_STR); 65 comp.add(blue); 69 multiComp.add(comp); 88 assertTrue(comp.contains(comp)); 89 assertTrue(comp.contains(blue)); 93 assertTrue(comp.contains(COMP_STR)); 94 assertTrue(comp.contains(BLUE_STR)) [all...] |
/device/google/contexthub/firmware/src/drivers/bosch_bmp280/ |
bosch_bmp280.c | 82 struct BMP280CompParams comp; member in struct:BMP280Task 342 (((adc_T >> 3) - ((int32_t)mTask.comp.dig_T1 << 1)) 343 * (int32_t)mTask.comp.dig_T2) >> 11; 345 int32_t tmp = (adc_T >> 4) - (int32_t)mTask.comp.dig_T1; 347 int32_t var2 = (((tmp * tmp) >> 12) * (int32_t)mTask.comp.dig_T3) >> 14; 362 v2 = fSqr * mTask.comp.dig_P6 + f * mTask.comp.dig_P5 * (float)(1ULL << 17) + mTask.comp.dig_P4 * (float)(1ULL << 35); 363 v1 = fSqr * mTask.comp.dig_P1 * mTask.comp.dig_P3 * (1.0f/(1ULL << 41)) + f * mTask.comp.dig_P1 * mTask.comp.dig_P2 * (1.0f/(1ULL << 21)) + m (…) [all...] |
/external/boringssl/src/include/openssl/ |
lhash_macros.h | 20 #define lh_ASN1_OBJECT_new(hash, comp) \ 25 comp))) 59 #define lh_CONF_VALUE_new(hash, comp) \ 63 int (*)(const CONF_VALUE *a, const CONF_VALUE *b), comp))) 96 #define lh_SSL_SESSION_new(hash, comp) \ 101 comp)))
|
stack.h | 102 * order, based on |comp|. */ 107 /* comp is an optional comparison function. */ 108 stack_cmp_func comp; member in struct:stack_st 202 OPENSSL_EXPORT _STACK *sk_new(stack_cmp_func comp); 281 OPENSSL_EXPORT stack_cmp_func sk_set_cmp_func(_STACK *sk, stack_cmp_func comp);
|
stack_macros.h | 20 #define sk_ACCESS_DESCRIPTION_new(comp) \ 24 comp))) 91 #define sk_ACCESS_DESCRIPTION_set_cmp_func(sk, comp) \ 97 comp))) 108 #define sk_ASN1_ADB_TABLE_new(comp) \ 111 int (*)(const ASN1_ADB_TABLE **a, const ASN1_ADB_TABLE **b), comp))) 177 #define sk_ASN1_ADB_TABLE_set_cmp_func(sk, comp) \ 183 comp))) 193 #define sk_ASN1_GENERALSTRING_new(comp) \ 197 comp))) [all...] |
lhash.h | 142 lhash_cmp_func comp; member in struct:lhash_st 146 /* lh_new returns a new, empty hash table or NULL on error. If |comp| is NULL, 149 OPENSSL_EXPORT _LHASH *lh_new(lhash_hash_func hash, lhash_cmp_func comp);
|
/external/libxml2/ |
testXPath.c | 95 xmlXPathCompExprPtr comp; local 97 comp = xmlXPathCompile(BAD_CAST str); 98 if (comp != NULL) { 100 xmlXPathDebugDumpCompExpr(stdout, comp, 0); 102 res = xmlXPathCompiledEval(comp, ctxt); 103 xmlXPathFreeCompExpr(comp);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/ |
test_ccompiler.py | 74 comp = compiler() 75 customize_compiler(comp) 76 self.assertEqual(comp.exes['archiver'], 'my_ar -arflags')
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/ |
test_ccompiler.py | 74 comp = compiler() 75 customize_compiler(comp) 76 self.assertEqual(comp.exes['archiver'], 'my_ar -arflags')
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
Normalizer2.java | 115 return Norm2AllModes.getNFCInstance().comp; 135 return Norm2AllModes.getNFKCInstance().comp; 155 return Norm2AllModes.getNFKC_CFInstance().comp; 191 case COMPOSE: return all2Modes.comp;
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
Normalizer2.java | 121 return Norm2AllModes.getNFCInstance().comp; 143 return Norm2AllModes.getNFKCInstance().comp; 165 return Norm2AllModes.getNFKC_CFInstance().comp; 202 case COMPOSE: return all2Modes.comp;
|
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/ |
LigatureTreeWalker.java | 135 for (int comp = 1; comp < compCount; comp += 1) { 136 writer.writeData(entry.getComponentChar(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);
|
/packages/apps/Gallery2/src/com/android/gallery3d/ingest/data/ |
MtpBitmapFetch.java | 87 int comp = Math.max(h, w); local 89 while ((comp >> 1) >= maxSide) { 90 comp = comp >> 1;
|
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/ |
vlc_encode.cpp | 2035 Int comp; local [all...] |
/external/opencv3/3rdparty/libpng/ |
pngwutil.c | 379 compression_state *comp) 383 comp->num_output_ptr = 0; 384 comp->max_output_ptr = 0; 385 comp->output_ptr = NULL; 386 comp->input = NULL; 387 comp->input_len = text_len; 392 comp->input = (png_const_bytep)text; 450 if (comp->num_output_ptr >= comp->max_output_ptr) 454 old_max = comp->max_output_ptr 1100 compression_state comp; local 1693 compression_state comp; local 1755 compression_state comp; local [all...] |
/external/libpng/contrib/gregbook/ |
makevms.com | 37 $ comp = "__decc__=1" 45 $ comp = "__gcc__=1" 48 $ comp = "__vaxc__=1" 53 $ comp = "__decc__=1"
|