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

1 2 3 4

  /external/chromium_org/third_party/skia/src/core/
SkMathPriv.h 56 unsigned prod = SkMulS16(a, b) + 1; local
57 return (prod + (prod >> 8)) >> 8;
66 unsigned prod = SkMulS16(a, b) + 255; local
67 return (prod + (prod >> 8)) >> 8;
72 static inline unsigned SkDiv255Round(unsigned prod) {
73 prod += 128;
74 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/components/omaha_query_params/
omaha_query_params.h 29 // following fields: "os", "arch", "nacl_arch", "prod", "prodchannel",
31 static std::string Get(ProdId prod);
33 // Returns the value we use for the "prod=" parameter. Possible return values
35 static const char* GetProdIdString(ProdId prod);
omaha_query_params.cc 66 std::string OmahaQueryParams::Get(ProdId prod) {
68 "os=%s&arch=%s&nacl_arch=%s&prod=%s%s",
72 GetProdIdString(prod),
77 const char* OmahaQueryParams::GetProdIdString(OmahaQueryParams::ProdId prod) {
78 switch (prod) {
  /external/chromium_org/v8/test/mjsunit/regress/
regress-351624.js 11 var prod = val * big;
12 backup[0] = prod;
13 var rounded = Math.round(prod);
14 assertEquals(prod, backup[0]);
  /external/chromium_org/third_party/skia/src/opts/
SkColor_opts_SSE2.h 35 __m128i prod = _mm_mullo_epi16(a, b); local
36 prod = _mm_add_epi32(prod, _mm_set1_epi32(128));
37 prod = _mm_add_epi32(prod, _mm_srli_epi32(prod, 8));
38 prod = _mm_srli_epi32(prod, 8);
40 return prod;
86 __m128i prod = _mm_mullo_epi16(a, b) local
    [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/fix/source/
filters.c 27 int64_t prod = 0; local
35 prod += WEBRTC_SPL_MUL_16_16(x[i], x[i]);
39 temp = (uint32_t)(prod >> 31);
45 r[0] = (int32_t)(prod >> scaling);
49 prod = 0;
51 prod += WEBRTC_SPL_MUL_16_16(x[j], x[i + j]);
53 sum = (int32_t)(prod >> scaling);
  /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)));
  /external/chromium_org/third_party/skia/include/core/
SkMath.h 192 unsigned prod = SkMulS16(a, b) + (1 << (shift - 1)); local
193 return (prod + (prod >> shift)) >> shift;
203 unsigned prod = SkMulS16(a, b) + 128; local
204 return (prod + (prod >> 8)) >> 8;
  /bionic/libc/kernel/uapi/linux/
zorro.h 26 #define ZORRO_ID(manuf, prod, epc) ((ZORRO_MANUF_##manuf << 16) | ((prod) << 8) | (epc))
  /build/core/tasks/
product-graph.mk 48 products_list := $(foreach prod,$(ANDROID_PRODUCT_GRAPH),$(call resolve-short-product-name,$(prod)))
  /external/kernel-headers/original/uapi/linux/
zorro.h 35 #define ZORRO_ID(manuf, prod, epc) \
36 ((ZORRO_MANUF_##manuf << 16) | ((prod) << 8) | (epc))
  /external/eigen/Eigen/src/Core/
ProductBase.h 198 operator*(const ProductBase<Derived,Lhs,Rhs>& prod, const typename Derived::Scalar& x)
199 { return ScaledProduct<Derived>(prod.derived(), x); }
204 operator*(const ProductBase<Derived,Lhs,Rhs>& prod, const typename Derived::RealScalar& x)
205 { return ScaledProduct<Derived>(prod.derived(), x); }
210 operator*(const typename Derived::Scalar& x,const ProductBase<Derived,Lhs,Rhs>& prod)
211 { return ScaledProduct<Derived>(prod.derived(), x); }
216 operator*(const typename Derived::RealScalar& x,const ProductBase<Derived,Lhs,Rhs>& prod)
217 { return ScaledProduct<Derived>(prod.derived(), x); }
244 ScaledProduct(const NestedProduct& prod, const Scalar& x)
245 : Base(prod.lhs(),prod.rhs()), m_prod(prod), m_alpha(x) {
    [all...]
GeneralProduct.h 228 EIGEN_DONT_INLINE void outer_product_selector_run(const ProductType& prod, Dest& dest, const Func& func, const false_type&)
235 func(dest.col(j), prod.rhs().coeff(j) * prod.lhs());
240 EIGEN_DONT_INLINE void outer_product_selector_run(const ProductType& prod, Dest& dest, const Func& func, const true_type&) {
246 func(dest.row(i), prod.lhs().coeff(i) * prod.rhs());
360 static void run(const ProductType& prod, Dest& dest, const typename ProductType::Scalar& alpha)
366 (prod.rhs().transpose(), prod.lhs().transpose()), destT, alpha);
409 static inline void run(const ProductType& prod, Dest& dest, const 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);
  /external/mdnsresponder/Clients/
Makefile 33 LIBS = -L../mDNSPosix/build/prod/ -ldns_sd

Completed in 2058 milliseconds

1 2 3 4