HomeSort by relevance Sort by last modified time
    Searched defs:col (Results 1 - 25 of 782) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/icu/icu4c/source/tools/gencolusb/
verify_uset.cpp 60 puts("verify col UCA");
62 Collator *col = Collator::createInstance(Locale::getEnglish(), errorCode); local
  /external/libavc/common/x86/
ih264_mem_fns_ssse3.c 83 int col; local
84 for(col = num_bytes; col >= 8; col -= 8)
122 int col; local
125 for(col = num_bytes; col >= 8; col -= 8)
160 int col; local
163 for(col = num_words; col >= 8; col -= 8
    [all...]
ih264_padding_ssse3.c 165 WORD32 col; local
175 for(col = 0; col < pad_size; col += 8)
177 _mm_storel_epi64((__m128i *)(pu1_dst + col), src_temp0_16x8b);
231 WORD32 col; local
242 for(col = 0; col < pad_size; col += 8)
244 _mm_storel_epi64((__m128i *)(pu1_dst + col), src_temp0_16x8b)
298 WORD32 col; local
    [all...]
  /external/libhevc/common/x86/
ihevc_mem_fns_ssse3_intr.c 82 int col; local
83 for(col = num_bytes; col >= 8; col -= 8)
121 int col; local
124 for(col = num_bytes; col >= 8; col -= 8)
159 int col; local
162 for(col = num_words; col >= 8; col -= 8
    [all...]
ihevc_inter_pred_filters_sse42_intr.c 117 WORD32 row, col; local
127 for(col = 0; col < wd; col += 8)
140 src0_16x8b = _mm_slli_epi16(src0_16x8b, SHIFT_14_MINUS_BIT_DEPTH); /* (pu1_src[col] << SHIFT_14_MINUS_BIT_DEPTH */
163 for(col = 0; col < wd; col += 4)
176 src0_16x8b = _mm_slli_epi16(src0_16x8b, SHIFT_14_MINUS_BIT_DEPTH); /* (pu1_src[col] << SHIFT_14_MINUS_BIT_DEPTH */
244 WORD32 row, col, wdx2 local
465 WORD32 row, col, wdx2; local
    [all...]
ihevc_padding_ssse3_intr.c 168 WORD32 col; local
184 for(col = 0; col < pad_size; col += 8)
186 _mm_storel_epi64((__m128i *)(pu1_dst + col), src_temp0_16x8b);
240 WORD32 col; local
254 for(col = 0; col < pad_size; col += 8)
256 _mm_storel_epi64((__m128i *)(pu1_dst + col), src_temp0_16x8b)
310 WORD32 col; local
    [all...]
  /external/apache-harmony/support/src/test/java/tests/support/
Support_CollectionTest.java 28 Collection<Integer> col; // must contain the Integers 0 to 99 field in class:Support_CollectionTest
36 col = c;
41 new Support_UnmodifiableCollectionTest("", col).runTest();
50 assertTrue("CollectionTest - a) add did not work", col.add(new Integer(
52 assertTrue("CollectionTest - b) add did not work", col
56 assertTrue("CollectionTest - a) remove did not work", col
58 assertTrue("CollectionTest - b) remove did not work", !col
62 assertTrue("CollectionTest - a) addAll failed", col
64 assertTrue("CollectionTest - b) addAll failed", col
68 assertTrue("CollectionTest - a) containsAll failed", col
    [all...]
Support_UnmodifiableCollectionTest.java 29 Collection<Integer> col; field in class:Support_UnmodifiableCollectionTest
40 col = c;
47 assertTrue("UnmodifiableCollectionTest - should contain 0", col
49 assertTrue("UnmodifiableCollectionTest - should contain 50", col
51 assertTrue("UnmodifiableCollectionTest - should not contain 100", !col
61 col.containsAll(hs));
65 !col.containsAll(hs));
68 assertTrue("UnmodifiableCollectionTest - should not be empty", !col
72 Iterator<Integer> it = col.iterator();
89 + col.size(), col.size() == 100)
    [all...]
  /libcore/support/src/test/java/tests/support/
Support_CollectionTest.java 27 Collection<Integer> col; // must contain the Integers 0 to 99 field in class:Support_CollectionTest
35 col = c;
40 new Support_UnmodifiableCollectionTest("", col).runTest();
49 assertTrue("CollectionTest - a) add did not work", col.add(new Integer(
51 assertTrue("CollectionTest - b) add did not work", col
55 assertTrue("CollectionTest - a) remove did not work", col
57 assertTrue("CollectionTest - b) remove did not work", !col
61 assertTrue("CollectionTest - a) addAll failed", col
63 assertTrue("CollectionTest - b) addAll failed", col
67 assertTrue("CollectionTest - a) containsAll failed", col
    [all...]
  /external/libvpx/libvpx/vp8/common/
mv.h 21 short col; member in struct:__anon26119
  /external/mesa3d/src/mesa/swrast/
s_bitmap.c 54 GLint row, col; local
84 for (col = 0; col < width; col++) {
86 span.array->x[count] = px + col;
106 for (col = 0; col < width; col++) {
108 span.array->x[count] = px + col;
154 GLint row, col;
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
CollectionStore.java 41 List<T> col = new ArrayList<T>(); local
50 col.add(obj);
54 return col;
  /external/libavc/common/
ih264_padding.c 218 WORD32 row, col; local
231 for (col = -pad_size; col < 0; col++)
233 pu2_src[col] = u2_uv_val;
312 WORD32 row, col; local
323 for (col = 0; col < pad_size; col++)
325 pu2_src[col] = u2_uv_val
    [all...]
  /external/libhevc/common/
ihevc_weighted_pred.c 117 WORD32 row, col; local
122 for(col = 0; col < wd; col++)
124 i4_tmp = (pi2_src[col] + lvl_shift) * wgt0;
128 pu1_dst[col] = CLIP_U8(i4_tmp);
202 WORD32 row, col; local
207 for(col = 0; col < 2 * wd; col += 2
308 WORD32 row, col; local
413 WORD32 row, col; local
500 WORD32 row, col; local
583 WORD32 row, col; local
    [all...]
ihevc_padding.c 150 //WORD32 col;
439 WORD32 col; local
450 for(col = -pad_size; col < 0; col++)
451 pu2_src[col] = u2_uv_val;
560 WORD32 col; local
571 for(col = 0; col < pad_size; col++
    [all...]
  /external/libhevc/decoder/
ihevcd_itrans_recon_dc.c 93 WORD32 row, col; local
110 for(col = 0; col < trans_size; col++)
111 pu1_dst[row * dst_strd + col] = CLIP_U8((pu1_pred[row * pred_strd + col] + dc_value));
123 WORD32 row, col; local
141 for(col = 0; col < trans_size; col++
    [all...]
  /external/autotest/frontend/client/src/autotest/afe/
CheckBoxPanelDisplay.java 21 int col = index % numColumns; local
22 table.setWidget(row, col, checkbox);
  /external/boringssl/src/ssl/
d1_srtp.cc 170 const char *col; local
173 col = strchr(ptr, ':');
177 col ? (size_t)(col - ptr) : strlen(ptr))) {
186 if (col) {
187 ptr = col + 1;
189 } while (col);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
CertStoreCollectionSpi.java 38 List col = new ArrayList(); local
49 col.add(obj);
61 col.add(obj);
66 return col;
74 List col = new ArrayList(); local
85 col.add(obj);
97 col.add(obj);
102 return col;
  /external/compiler-rt/lib/tsan/rtl/
tsan_symbolize.cc 44 int *col) {
55 int line, col; local
58 sizeof(file_buf), &line, &col)) {
62 frame->info.column = col;
  /external/eigen/Eigen/src/Core/
BooleanRedux.h 22 col = (UnrollCount-1) / Traits::RowsAtCompileTime, enumerator in enum:Eigen::internal::all_unroller::__anon19104
28 return all_unroller<Derived, UnrollCount-1>::run(mat) && mat.coeff(row, col);
49 col = (UnrollCount-1) / Traits::RowsAtCompileTime, enumerator in enum:Eigen::internal::any_unroller::__anon19105
55 return any_unroller<Derived, UnrollCount-1>::run(mat) || mat.coeff(row, col);
Swap.h 38 void assignPacket(Index row, Index col)
40 PacketType tmp = m_src.template packet<LoadMode,PacketType>(row,col);
41 const_cast<SrcEvaluatorTypeT&>(m_src).template writePacket<LoadMode>(row,col, m_dst.template packet<StoreMode,PacketType>(row,col));
42 m_dst.template writePacket<StoreMode>(row,col,tmp);
58 Index col = Base::colIndexByOuterInner(outer, inner); local
59 assignPacket<StoreMode,LoadMode,PacketType>(row, col);
  /external/libavc/encoder/
ih264e_half_pel.c 187 WORD32 row, col; local
194 for (col = -2; col < wd + 3; col++)
196 tmp = ih264_g_six_tap[0] * (pu1_src[col - 2 * src_strd] + pu1_src[col + 3 * src_strd]) +
197 ih264_g_six_tap[1] * (pu1_src[col - 1 * src_strd] + pu1_src[col + 2 * src_strd]) +
198 ih264_g_six_tap[2] * (pu1_src[col] + pu1_src[col + 1 * src_strd])
    [all...]
  /external/libjpeg-turbo/
jccolext.c 41 register JDIMENSION col; local
50 for (col = 0; col < num_cols; col++) {
61 outptr0[col] = (JSAMPLE)
65 outptr1[col] = (JSAMPLE)
69 outptr2[col] = (JSAMPLE)
98 register JDIMENSION col; local
105 for (col = 0; col < num_cols; col++)
132 register JDIMENSION col; local
    [all...]
  /external/libvpx/libvpx/vp9/common/
vp9_mv.h 24 int16_t col; member in struct:mv
34 int32_t col; member in struct:mv32
47 mv->col = clamp(mv->col, min_col, max_col);

Completed in 489 milliseconds

1 2 3 4 5 6 7 8 91011>>