/external/gemmlowp/internal/ |
output_neon.h | 50 OutputType Eval(InputType input, int row, int col) const { 55 impl_int32x4.Eval(input.data.val[i], row + 4 * i, col); 93 OutputStageQuantizeDownInt32ToUint8ScalePC<VectorShape::Col>, 97 typedef OutputStageQuantizeDownInt32ToUint8ScalePC<VectorShape::Col> 102 OutputType Eval(InputType input, int row, int col) const { 132 OutputType Eval(InputType input, int row, int col) const { 137 vld1q_s32(output_stage.result_mult_int.data(col)); 200 OutputType Eval(InputType input, int row, int col) const { 203 bias = vdupq_n_s32(output_stage.bias_vector(col)); 245 int col) { [all...] |
/external/syslinux/gpxe/src/include/gpxe/ |
editbox.h | 24 unsigned int col; member in struct:edit_box 40 WINDOW *win, unsigned int row, unsigned int col,
|
/external/toybox/toys/pending/ |
more.c | 77 unsigned rows = 24, cols = 80, row = 0, col = 0; local 105 st.st_size = show_prompt = col = row = 0; 125 col = row = show_prompt = 0; 131 if (ch == '\t') col = (col | 0x7) + 1; 132 else col++; 133 if (col == cols) putchar(ch = '\n'); 135 col = 0;
|
/frameworks/support/design/tests/src/android/support/design/widget/ |
CoordinatorLayoutSortTest.java | 72 final CoordinatorLayout col = mActivityTestRule.getActivity().mCoordinatorLayout; local 80 final View view = new View(col.getContext()) { 93 CoordinatorLayout.LayoutParams lp = col.generateDefaultLayoutParams(); 107 addViewsAndAssertOrdering(col, views, testOrder); 110 private void addViewsAndAssertOrdering(final CoordinatorLayout col, 119 col.addView(addOrder.get(i)); 126 assertEquals(expectedOrder, col.getDependencySortedChildren()); 132 col.removeAllViews();
|
/external/eigen/test/ |
product_syrk.cpp | 77 VERIFY_IS_APPROX((m2.template selfadjointView<Lower>().rankUpdate(m1.col(c),s1)._expression()), 78 ((s1 * m1.col(c) * m1.col(c).adjoint()).eval().template triangularView<Lower>().toDenseMatrix())); 81 VERIFY_IS_APPROX((m2.template selfadjointView<Upper>().rankUpdate(m1.col(c),s1)._expression()), 82 ((s1 * m1.col(c) * m1.col(c).adjoint()).eval().template triangularView<Upper>().toDenseMatrix())); 84 VERIFY_IS_APPROX((rm2.template selfadjointView<Upper>().rankUpdate(m1.col(c),s1)._expression()), 85 ((s1 * m1.col(c) * m1.col(c).adjoint()).eval().template triangularView<Upper>().toDenseMatrix())); 87 VERIFY_IS_APPROX((m2.template triangularView<Upper>() += s1 * m3.col(c) * m1.col(c).adjoint()).nestedExpression() [all...] |
/external/pdfium/core/fxge/dib/ |
fx_dib_convert.cpp | 119 int row, col; local 123 for (col = 0; col < width; col++) { 124 uint8_t* src_port = scan_line + col * bpp; 158 for (int col = src_left; col < src_left + width; col++) { 159 if (src_scan[col / 8] & (1 << (7 - col % 8))) [all...] |
/external/libjpeg-turbo/ |
tjunittest.c | 94 int index, row, col, halfway=16; local 101 for(col=0; col<w; col++) 103 if(flags&TJFLAG_BOTTOMUP) index=(h-row-1)*w+col; 104 else index=row*w+col; 105 if(((row/8)+(col/8))%2==0) buf[index]=(row<halfway)? 255:0; 115 for(col=0; col<w; col++ 188 int index, row, col, retval=1; local 300 int row, col; local [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/ |
byext.py | 92 for col in cols:
94 cw = max(minwidth, len(col))
96 value = self.stats[ext].get(col)
104 colwidth[col] = cw
105 self.stats["TOTAL"][col] = total
111 for col in cols:
112 print "%*s" % (colwidth[col], col),
116 for col in cols:
117 value = self.stats[ext].get(col, "")
[all...] |
/external/pdfium/core/fxge/ge/ |
cfx_cliprgn.cpp | 59 for (int col = m_Box.left; col < m_Box.right; col++) 60 dest_scan[col - m_Box.left] = src_scan[col - mask_rect.left]; 93 for (int col = new_box.left; col < new_box.right; col++) { 94 new_scan[col - new_box.left] = 95 old_scan[col - m_Box.left] * mask_scan[col - left] / 255 [all...] |
/external/eigen/Eigen/src/SparseCore/ |
TriangularSolver.h | 36 for(Index col=0 ; col<other.cols() ; ++col) 40 Scalar tmp = other.coeff(i,col); 49 tmp -= lastVal * other.coeff(lastIndex,col); 52 other.coeffRef(i,col) = tmp; 56 other.coeffRef(i,col) = tmp/lastVal; 73 for(Index col=0 ; col<other.cols() ; ++col) [all...] |
/external/pdfium/third_party/libjpeg/ |
fpdfapi_jccolor.c | 139 register JDIMENSION col; local 148 for (col = 0; col < num_cols; col++) { 159 outptr0[col] = (JSAMPLE) 163 outptr1[col] = (JSAMPLE) 167 outptr2[col] = (JSAMPLE) 195 register JDIMENSION col; local 202 for (col = 0; col < num_cols; col++) 234 register JDIMENSION col; local 286 register JDIMENSION col; local 315 register JDIMENSION col; local [all...] |
/external/libvncserver/test/ |
tjunittest.c | 79 int index, row, col, halfway=16; local 86 for(col=0; col<w; col++) 88 if(flags&TJFLAG_BOTTOMUP) index=(h-row-1)*w+col; 89 else index=row*w+col; 90 if(((row/8)+(col/8))%2==0) buf[index]=(row<halfway)? 255:0; 99 for(col=0; col<w; col++ 151 int index, row, col, retval=1; local [all...] |
/external/aac/libSBRdec/src/ |
sbrdec_drc.cpp | 185 \col Number of the time slot. 195 int col, 225 col += indx; 230 if (col < (numQmfSubSamples>>1)) { /* first half of current frame */ 232 int j = col + (numQmfSubSamples>>1); 254 else if (col < numQmfSubSamples) { /* second half of current frame */ 256 int j = col - (numQmfSubSamples>>1); 295 int j = col - (numQmfSubSamples>>1); 317 col -= numQmfSubSamples; 379 if (col == (numQmfSubSamples>>1)-1) 487 int col; local [all...] |
/external/eigen/unsupported/Eigen/src/SparseExtra/ |
DynamicSparseMatrix.h | 91 /** \returns the coefficient value at given position \a row, \a col 94 inline Scalar coeff(Index row, Index col) const 96 const Index outer = IsRowMajor ? row : col; 97 const Index inner = IsRowMajor ? col : row; 101 /** \returns a reference to the coefficient value at given position \a row, \a col 105 inline Scalar& coeffRef(Index row, Index col) 107 const Index outer = IsRowMajor ? row : col; 108 const Index inner = IsRowMajor ? col : row; 147 /** \returns a reference to the non zero coefficient at position \a row, \a col assuming that: 152 inline Scalar& insertBack(Index row, Index col) [all...] |
/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/bench/perf_monitoring/gemm/ |
make_plot.sh | 28 col=`cat $bench"_settings.txt" | wc -l` 29 echo "plot for [col=2:$col+1] '$WHAT.out.header' using 0:col:xticlabels(1) with lines" >> $WHAT.gnuplot
|
/external/eigen/doc/examples/ |
Tutorial_ReductionsVisitorsBroadcasting_broadcast_1nn.cpp | 23 cout << m.col(index) << endl;
|
/external/libvpx/libvpx/vp9/encoder/ |
vp9_encodemb.h | 32 void vp9_xform_quant_fp(MACROBLOCK *x, int plane, int block, int row, int col, 34 void vp9_xform_quant_dc(MACROBLOCK *x, int plane, int block, int row, int col, 36 void vp9_xform_quant(MACROBLOCK *x, int plane, int block, int row, int col, 41 void vp9_encode_block_intra(int plane, int block, int row, int col,
|
/external/toybox/toys/posix/ |
comm.c | 28 static void writeline(const char *line, int col) 30 if (col == 0 && toys.optflags & FLAG_1) return; 31 else if (col == 1) { 34 } else if (col == 2) {
|
/frameworks/rs/ |
rsMatrix4x4.h | 28 float get(uint32_t col, uint32_t row) const { 29 return m[col*4 + row]; 32 void set(uint32_t col, uint32_t row, float v) { 33 m[col*4 + row] = v;
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/ |
ConcurrentModificationExceptionTest.java | 29 Collection col; field in class:ConcurrentModificationExceptionTest.CollectionModifier 34 col = c; 44 col.add(someItem); 45 col.remove(someItem);
|
/developers/demos/JustForUs/justforus/src/main/java/com/example/android/justforus/ |
AssetProvider.java | 149 for (int col = 0; col < projection.length; col++) { 150 if (OpenableColumns.DISPLAY_NAME.equals(projection[col])) { 151 row[col] = path; 152 } else if (OpenableColumns.SIZE.equals(projection[col])) { 156 row[col] = Long.valueOf(afd.getLength());
|
/external/ImageMagick/config/ |
test-driver | 117 0:yes) col=$red res=XPASS recheck=yes gcopy=yes;; 118 0:*) col=$grn res=PASS recheck=no gcopy=no;; 119 77:*) col=$blu res=SKIP recheck=no gcopy=yes;; 120 99:*) col=$mgn res=ERROR recheck=yes gcopy=yes;; 121 *:yes) col=$lgn res=XFAIL recheck=no gcopy=yes;; 122 *:*) col=$red res=FAIL recheck=yes gcopy=yes;; 132 echo "${col}${res}${std}: $test_name"
|
/external/google-breakpad/autotools/ |
test-driver | 114 0:yes) col=$red res=XPASS recheck=yes gcopy=yes;; 115 0:*) col=$grn res=PASS recheck=no gcopy=no;; 116 77:*) col=$blu res=SKIP recheck=no gcopy=yes;; 117 99:*) col=$mgn res=ERROR recheck=yes gcopy=yes;; 118 *:yes) col=$lgn res=XFAIL recheck=no gcopy=yes;; 119 *:*) col=$red res=FAIL recheck=yes gcopy=yes;; 123 echo "${col}${res}${std}: $test_name"
|
/external/libmicrohttpd/ |
test-driver | 114 0:yes) col=$red res=XPASS recheck=yes gcopy=yes;; 115 0:*) col=$grn res=PASS recheck=no gcopy=no;; 116 77:*) col=$blu res=SKIP recheck=no gcopy=yes;; 117 99:*) col=$mgn res=ERROR recheck=yes gcopy=yes;; 118 *:yes) col=$lgn res=XFAIL recheck=no gcopy=yes;; 119 *:*) col=$red res=FAIL recheck=yes gcopy=yes;; 123 echo "${col}${res}${std}: $test_name"
|