HomeSort by relevance Sort by last modified time
    Searched defs:mv (Results 101 - 125 of 171) sorted by null

1 2 3 45 6 7

  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/ow2/asm/asm-debug-all/4.0/
asm-debug-all-4.0.jar 
  /prebuilts/tools/common/asm-tools/
asm-debug-all-4.0.jar 
  /external/chromium_org/chrome/browser/history/
history_backend.cc 111 MostVisitedURL mv; local
112 mv.url = page_data.GetURL();
113 mv.title = page_data.GetTitle();
116 mv.redirects.push_back(mv.url);
118 mv.redirects = redirects;
119 if (mv.redirects[mv.redirects.size() - 1] != mv.url) {
121 mv.redirects.push_back(mv.url)
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
vp9_firstpass.c 296 const MV *ref_mv, MV *best_mv,
299 MV tmp_mv = {0, 0};
300 MV ref_mv_full = {ref_mv->row >> 3, ref_mv->col >> 3};
315 // Center the initial step/diamond search on best mv.
423 MV lastmv = {0, 0};
425 const MV zero_mv = {0, 0};
518 MV best_ref_mv = {0, 0};
574 // all inter modes carry an overhead cost estimate for the mv.
577 // This penalty adds a cost matching that of a 0,0 mv to the intra case
600 MV mv = {0, 0} , tmp_mv = {0, 0}; local
    [all...]
  /external/deqp/framework/common/
tcuTexLookupVerifier.cpp 2061 const float mv = de::max(deFloatAbs(dvdx), deFloatAbs(dvdy)); local
    [all...]
  /external/deqp/modules/gles3/functional/
es3fTextureUnitTests.cpp 309 const float mv = de::max(de::abs(dvdx), de::abs(dvdy)); local
311 return deFloatLog2(mu + mv + mw);
325 const float mv = de::max(de::abs(dvdx), de::abs(dvdy)); local
327 return deFloatLog2(de::max(mu, de::max(mv, mw)));
    [all...]
es3fShaderTextureFunctionTests.cpp 266 float mv = de::max(deFloatAbs(dvdx), deFloatAbs(dvdy)); local
268 p = mode == LODMODE_MIN_BOUND ? de::max(mu, mv) : mu + mv;
294 float mv = de::max(deFloatAbs(dvdx), deFloatAbs(dvdy)); local
297 p = mode == LODMODE_MIN_BOUND ? de::max(de::max(mu, mv), mw) : (mu + mv + mw);
    [all...]
  /external/deqp/modules/glshared/
glsTextureTestUtil.cpp 269 float mv = de::max(deFloatAbs(dvdx), deFloatAbs(dvdy)); local
271 p = mode == LODMODE_MIN_BOUND ? de::max(mu, mv) : mu + mv;
309 float mv = de::max(deFloatAbs(dvdx), deFloatAbs(dvdy)); local
312 p = mode == LODMODE_MIN_BOUND ? de::max(de::max(mu, mv), mw) : (mu + mv + mw);
    [all...]
  /external/libvpx/libvpx/vp8/encoder/
rdopt.c 479 int mv_row = x->e_mbd.mode_info_context->mbmi.mv.as_mv.row;
480 int mv_col = x->e_mbd.mode_info_context->mbmi.mv.as_mv.col;
938 void vp8_set_mbmode_and_mvs(MACROBLOCK *x, MB_PREDICTION_MODE mb, int_mv *mv)
941 x->e_mbd.mode_info_context->mbmi.mv.as_int = mv->as_int;
990 this_mv->as_int = col ? d[-1].bmi.mv.as_int : left_block_mv(mic, i);
993 this_mv->as_int = row ? d[-4].bmi.mv.as_int : above_block_mv(mic, i, mis);
1006 left_mv.as_int = col ? d[-1].bmi.mv.as_int :
1016 d->bmi.mv.as_int = this_mv->as_int;
1019 x->partition_info->bmi[i].mv.as_int = this_mv->as_int
1537 int_mv mv; local
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_firstpass.c 392 const MV *ref_mv, MV *best_mv,
395 MV tmp_mv = {0, 0};
396 MV ref_mv_full = {ref_mv->row >> 3, ref_mv->col >> 3};
416 // Center the initial step/diamond search on best mv.
506 const MV zero_mv = {0, 0};
615 // all inter modes carry an overhead cost estimate for the mv.
618 // This penalty adds a cost matching that of a 0,0 mv to the intra case.
632 int_mv mv, tmp_mv; local
636 // Assume 0,0 motion with no mv overhead
    [all...]
  /frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
AdapterHelperTest.java 358 // mv(11, 12);
362 mv(2, 3);
370 mv(22, 11);
371 mv(22, 52);
382 mv(29, 5);
383 mv(30, 32);
393 mv(5, 18);
400 mv(34, 28);
409 mv(29, 15);
418 mv(3, 38)
804 mv(from, to); method
919 private void mv(int from, int to) { method in class:AdapterHelperTest
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_firstpass.c 391 const MV *ref_mv, MV *best_mv,
394 MV tmp_mv = {0, 0};
395 MV ref_mv_full = {ref_mv->row >> 3, ref_mv->col >> 3};
415 // Center the initial step/diamond search on best mv.
505 const MV zero_mv = {0, 0};
614 // all inter modes carry an overhead cost estimate for the mv.
617 // This penalty adds a cost matching that of a 0,0 mv to the intra case.
631 int_mv mv, tmp_mv; local
635 // Assume 0,0 motion with no mv overhead
    [all...]
  /cts/tests/tests/view/src/android/view/cts/
ViewGroupTest.java 648 MockView mv = new MockView(mContext); local
649 vg.addView(mv);
1102 MockViewGroup mv = new MockViewGroup(mContext); local
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
rdopt.c 478 int mv_row = x->e_mbd.mode_info_context->mbmi.mv.as_mv.row;
479 int mv_col = x->e_mbd.mode_info_context->mbmi.mv.as_mv.col;
937 void vp8_set_mbmode_and_mvs(MACROBLOCK *x, MB_PREDICTION_MODE mb, int_mv *mv)
940 x->e_mbd.mode_info_context->mbmi.mv.as_int = mv->as_int;
989 this_mv->as_int = col ? d[-1].bmi.mv.as_int : left_block_mv(mic, i);
992 this_mv->as_int = row ? d[-4].bmi.mv.as_int : above_block_mv(mic, i, mis);
1005 left_mv.as_int = col ? d[-1].bmi.mv.as_int :
1015 d->bmi.mv.as_int = this_mv->as_int;
1018 x->partition_info->bmi[i].mv.as_int = this_mv->as_int
1536 int_mv mv; local
    [all...]
  /frameworks/av/services/audioflinger/
AudioFlinger.cpp 1546 float mv; local
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
rdopt.c 479 int mv_row = x->e_mbd.mode_info_context->mbmi.mv.as_mv.row;
480 int mv_col = x->e_mbd.mode_info_context->mbmi.mv.as_mv.col;
943 void vp8_set_mbmode_and_mvs(MACROBLOCK *x, MB_PREDICTION_MODE mb, int_mv *mv)
946 x->e_mbd.mode_info_context->mbmi.mv.as_int = mv->as_int;
995 this_mv->as_int = col ? d[-1].bmi.mv.as_int : (uint32_t)left_block_mv(mic, i);
998 this_mv->as_int = row ? d[-4].bmi.mv.as_int : (uint32_t)above_block_mv(mic, i, mis);
1011 left_mv.as_int = col ? d[-1].bmi.mv.as_int :
1021 d->bmi.mv.as_int = this_mv->as_int;
1024 x->partition_info->bmi[i].mv.as_int = this_mv->as_int
1542 int_mv mv; local
    [all...]
  /hardware/intel/img/psb_video/src/
tng_hostcode.h 107 struct psb_buffer_s bufs_first_pass_out_best_multipass_param; //sFirstPassOutBestMultipassParamBuf[MAX_SOURCE_SLOTS_SL]; //!< Output Selectable Best MV Parameters of the First Pass
130 IMG_UINT32 mv; //apsMV[MAX_MV_ARRAYSIZE]; // two colocated vector stores member in struct:context_ENC_mem_size_s
154 IMG_UINT32 first_pass_out_best_multipass_param;//!< Output Selectable Best MV Parameters of the First Pass
  /libcore/luni/src/main/java/java/util/concurrent/
ConcurrentHashMap.java 1166 Object mk, mv, v; local
    [all...]
  /external/chromium_org/third_party/skia/tests/
PathTest.cpp 987 SkPoint mv; local
    [all...]
  /external/skia/tests/
PathTest.cpp 960 SkPoint mv; local
    [all...]
  /external/owasp/sanitizer/tools/findbugs/lib/
asm-commons-3.3.jar 
asm-util-3.3.jar 
  /prebuilts/tools/common/m2/repository/asm/asm-commons/3.3/
asm-commons-3.3.jar 
  /external/libhevc/common/
ihevc_structs.h 303 /* ref_pic_buf_id, then 8 bits will be wasted for each mv for aligning. */
305 /* mvs. Since pointer takes 4 bytes and MV itself is 4 bytes. It does not */
355 pu_mv_t mv; member in struct:__anon7414
405 * If merge is zero, following gives presence of mvd for L0 MV
410 * If merge is zero, following gives presence of mvd for L1 MV
415 * Partition mode - Needed during MV merge stage
418 * of more control code in MV Merge
423 * Partition index - Needed during MV merge stage
747 /* This points to a MV Bank stored at frame level. Though this */
920 /* One Inter PU with appropriate MV */
    [all...]
  /external/dexmaker/lib/
mockito-core-1.9.1-SNAPSHOT.jar 

Completed in 1144 milliseconds

1 2 3 45 6 7