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

1 2 3 4 5

  /external/chromium_org/third_party/skia/src/core/
SkMathPriv.h 60 unsigned prod = SkMulS16(a, b) + 1; local
61 return (prod + (prod >> 8)) >> 8;
70 unsigned prod = SkMulS16(a, b) + 255; local
71 return (prod + (prod >> 8)) >> 8;
76 static inline unsigned SkDiv255Round(unsigned prod) {
77 prod += 128;
78 return (prod + (prod >> 8)) >> 8
    [all...]
  /external/skia/src/core/
SkMathPriv.h 60 unsigned prod = SkMulS16(a, b) + 1; local
61 return (prod + (prod >> 8)) >> 8;
70 unsigned prod = SkMulS16(a, b) + 255; local
71 return (prod + (prod >> 8)) >> 8;
76 static inline unsigned SkDiv255Round(unsigned prod) {
77 prod += 128;
78 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/chromium_org/chrome/common/omaha_query_params/
omaha_query_params.h 23 // prod, prodchannel, prodversion.
24 static std::string Get(ProdId prod);
26 // Returns the value we use for the "prod=" parameter. Possible return values
28 static const char* GetProdIdString(chrome::OmahaQueryParams::ProdId prod);
omaha_query_params.cc 83 std::string OmahaQueryParams::Get(ProdId prod) {
85 "os=%s&arch=%s&nacl_arch=%s&prod=%s&prodchannel=%s&prodversion=%s",
89 GetProdIdString(prod),
96 chrome::OmahaQueryParams::ProdId prod) {
97 switch (prod) {
  /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/chromium_org/third_party/skia/include/core/
SkMath.h 161 unsigned prod = SkMulS16(a, b) + (1 << (shift - 1)); local
162 return (prod + (prod >> shift)) >> shift;
172 unsigned prod = SkMulS16(a, b) + 128; local
173 return (prod + (prod >> 8)) >> 8;
  /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/skia/include/core/
SkMath.h 161 unsigned prod = SkMulS16(a, b) + (1 << (shift - 1)); local
162 return (prod + (prod >> shift)) >> shift;
172 unsigned prod = SkMulS16(a, b) + 128; local
173 return (prod + (prod >> 8)) >> 8;
  /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)))
  /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);

Completed in 736 milliseconds

1 2 3 4 5