HomeSort by relevance Sort by last modified time
    Searched refs:prod (Results 1 - 25 of 91) sorted by null

1 2 3 4

  /external/skia/src/core/
SkMathPriv.h 68 unsigned prod = SkMulS16(a, b) + 1; local
69 return (prod + (prod >> 8)) >> 8;
78 unsigned prod = SkMulS16(a, b) + 255; local
79 return (prod + (prod >> 8)) >> 8;
84 static inline unsigned SkDiv255Round(unsigned prod) {
85 prod += 128;
86 return (prod + (prod >> 8)) >> 8
    [all...]
  /cts/tools/dasm/src/java_cup/
parse_action_row.java 72 int i, prod, max_prod, max_red; local
90 prod = ((reduce_action)under_term[i]).reduce_with().index();
91 reduction_count[prod]++;
92 if (reduction_count[prod] > max_red)
94 max_red = reduction_count[prod];
95 max_prod = prod;
non_terminal.java 124 production prod; local
152 prod = (production)e.nextElement();
153 prod.set_nullable(prod.check_nullable());
168 production prod; local
185 prod = (production)p.nextElement();
188 prod_first = prod.check_first_set();
219 public void add_production(production prod) throws internal_error
222 if (prod == null || prod.lhs() == null || prod.lhs().the_symbol() != this
    [all...]
reduce_action.java 18 * @param prod the production this action reduces with.
20 public reduce_action(production prod ) throws internal_error
23 if (prod == null)
27 _reduce_with = prod;
parse_action_table.java 64 production prod; local
84 prod = (production)p.nextElement();
87 if (prod.num_reductions() == 0)
96 prod.to_simple_string() + "\" never reduced");
lalr_item.java 38 * @param prod the production for the item.
42 public lalr_item(production prod, int pos, terminal_set look)
45 super(prod, pos);
54 * @param prod the production for the item.
57 public lalr_item(production prod, terminal_set look) throws internal_error
59 this(prod,0,look);
65 * @param prod the production for the item.
67 public lalr_item(production prod) throws internal_error
69 this(prod,0,new terminal_set());
emit.java 307 production prod; local
355 prod = (production)p.nextElement();
359 out.println(" case " + prod.index() + ": // " +
360 prod.to_simple_string());
368 prod.to_simple_string() + "\");");
372 prod.lhs().the_symbol().stack_type() + "(/*" +
373 prod.lhs().the_symbol().name() + "*/" +
374 prod.lhs().the_symbol().index() + ");");
377 if (prod.action() != null && prod.action().code_string() != null &
422 production prod; local
    [all...]
lr_item_core.java 30 * @param prod production this item uses.
33 public lr_item_core(production prod, int pos) throws internal_error
38 if (prod == null)
42 _the_production = prod;
65 * @param prod production this item uses.
67 public lr_item_core(production prod) throws internal_error
69 this(prod,0);
  /external/eigen/doc/snippets/
MatrixBase_prod.cpp 3 cout << "Here is the product of all the coefficients:" << endl << m.prod() << endl;
PartialRedux_prod.cpp 3 cout << "Here is the product of each row:" << endl << m.rowwise().prod() << endl;
  /external/skia/legacy/include/core/
SkMath.h 188 unsigned prod = SkMulS16(a, b) + 1; local
189 return (prod + (prod >> 8)) >> 8;
198 unsigned prod = SkMulS16(a, b) + 128; local
199 return (prod + (prod >> 8)) >> 8;
208 unsigned prod = SkMulS16(a, b) + 255; local
209 return (prod + (prod >> 8)) >> 8;
219 unsigned prod = SkMulS16(a, b) + (1 << (shift - 1)) local
    [all...]
  /external/skia/include/core/
SkMath.h 146 unsigned prod = SkMulS16(a, b) + (1 << (shift - 1)); local
147 return (prod + (prod >> shift)) >> shift;
157 unsigned prod = SkMulS16(a, b) + 128; local
158 return (prod + (prod >> 8)) >> 8;
  /external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/
filters.c 37 int64_t prod = 0; local
41 prod += WEBRTC_SPL_MUL_16_16(x[i], x[i]);
45 temp = (uint32_t)(prod >> 31);
51 r[0] = (int32_t)(prod >> scaling);
55 prod = 0;
57 prod += WEBRTC_SPL_MUL_16_16(x[j], x[i + j]);
59 sum = (int32_t)(prod >> scaling);
  /external/dropbear/libtomcrypt/src/modes/lrw/
lrw_process.c 31 unsigned char prod[16]; local
47 XMEMCPY(prod, lrw->pad, 16);
75 /* xor prod */
78 *((LTC_FAST_TYPE *)(ct + x)) = *((LTC_FAST_TYPE *)(pt + x)) ^ *((LTC_FAST_TYPE *)(prod + x));
82 ct[x] = pt[x] ^ prod[x];
97 /* xor prod */
100 *((LTC_FAST_TYPE *)(ct + x)) = *((LTC_FAST_TYPE *)(ct + x)) ^ *((LTC_FAST_TYPE *)(prod + x));
104 ct[x] = ct[x] ^ prod[x];
  /external/stlport/test/unit/
accum_test.cpp 44 int prod = accumulate(v.begin(), v.end(), 1, mult); local
45 CPPUNIT_ASSERT(prod==120);
  /ndk/tests/device/test-gnustl-full/unit/
accum_test.cpp 44 int prod = accumulate(v.begin(), v.end(), 1, mult); local
45 CPPUNIT_ASSERT(prod==120);
  /ndk/tests/device/test-stlport/unit/
accum_test.cpp 44 int prod = accumulate(v.begin(), v.end(), 1, mult); local
45 CPPUNIT_ASSERT(prod==120);
  /external/eigen/doc/examples/
tut_arithmetic_redux_basic.cpp 11 cout << "Here is mat.prod(): " << mat.prod() << endl;
  /external/eigen/bench/btl/libs/ublas/
ublas_interface.hh 92 X = prod(A,B);
96 X = prod(A,B);
106 X.assign(prod(A,B));
110 X.assign(prod(trans(A),B));
114 X.assign(prod(A,B));
126 // X = prod(trans(A),A);
127 X.assign(prod(trans(A),A));
131 // X = prod(A,trans(A));
132 X.assign(prod(A,trans(A)));
  /build/core/tasks/
product-graph.mk 48 products_list := $(foreach prod,$(ANDROID_PRODUCT_GRAPH),$(call resolve-short-product-name,$(prod)))
64 $(foreach prod, $(PRIVATE_PRODUCTS), \
65 echo \"$(prod)\" [ \
66 label=\"$(dir $(prod))\\n$(notdir $(prod))\\n\\n$(PRODUCTS.$(strip $(prod)).PRODUCT_MODEL)\\n$(PRODUCTS.$(strip $(prod)).PRODUCT_DEVICE)\" \
67 $(if $(filter $(prod),$(PRIVATE_PRODUCTS_FILTER)), style=\"filled\" fillcolor=\"#FFFDB0\",) \
68 fontcolor=\"darkblue\" href=\"products/$(prod).html\"
    [all...]
  /external/valgrind/main/drd/tests/
matinv.c 143 elem_t* prod; local
147 prod = new_matrix(rows1, cols2);
152 prod[i * cols2 + j] = 0;
155 prod[i * cols2 + j] += a1[i * cols1 + k] * a2[k * cols2 + j];
159 return prod;
316 elem_t *a, *inv, *prod; local
348 prod = multiply_matrices(a, matrix_size, matrix_size,
350 error = identity_error(prod, matrix_size);
361 delete_matrix(prod);
omp_matinv.c 131 elem_t* prod; local
135 prod = new_matrix(rows1, cols2);
140 prod[i * cols2 + j] = 0;
143 prod[i * cols2 + j] += a1[i * cols1 + k] * a2[k * cols2 + j];
147 return prod;
292 elem_t *a, *inv, *prod; local
328 prod = multiply_matrices(a, matrix_size, matrix_size,
330 error = identity_error(prod, matrix_size);
341 delete_matrix(prod);
  /external/eigen/Eigen/src/Core/
ProductBase.h 198 operator*(const ProductBase<Derived,Lhs,Rhs>& prod, typename Derived::Scalar x)
199 { return ScaledProduct<Derived>(prod.derived(), x); }
204 operator*(const ProductBase<Derived,Lhs,Rhs>& prod, typename Derived::RealScalar x)
205 { return ScaledProduct<Derived>(prod.derived(), x); }
210 operator*(typename Derived::Scalar x,const ProductBase<Derived,Lhs,Rhs>& prod)
211 { return ScaledProduct<Derived>(prod.derived(), x); }
216 operator*(typename Derived::RealScalar x,const ProductBase<Derived,Lhs,Rhs>& prod)
217 { return ScaledProduct<Derived>(prod.derived(), x); }
244 ScaledProduct(const NestedProduct& prod, Scalar x)
245 : Base(prod.lhs(),prod.rhs()), m_prod(prod), m_alpha(x) {
    [all...]
GeneralProduct.h 257 static EIGEN_DONT_INLINE void run(const ProductType& prod, Dest& dest, typename ProductType::Scalar alpha) {
263 dest.col(j) += (alpha * prod.rhs().coeff(j)) * prod.lhs();
269 static EIGEN_DONT_INLINE void run(const ProductType& prod, Dest& dest, typename ProductType::Scalar alpha) {
275 dest.row(i) += (alpha * prod.lhs().coeff(i)) * prod.rhs();
338 static void run(const ProductType& prod, Dest& dest, typename ProductType::Scalar alpha)
344 (prod.rhs().transpose(), prod.lhs().transpose()), destT, alpha);
387 static inline void run(const ProductType& prod, Dest& dest, typename ProductType::Scalar alpha
    [all...]
  /external/eigen/bench/btl/libs/tvmet/
tvmet_interface.hh 86 X = prod(A,B);
90 X = prod(A,B);
94 X = prod(trans(A),B);

Completed in 780 milliseconds

1 2 3 4