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

1 2

  /external/bluetooth/glib/gobject/
glib-mkenums.in 249 my $prod = $fhead;
251 $prod =~ s/\@filename\@/$ARGV[0]/g;
252 $prod =~ s/\\a/\a/g; $prod =~ s/\\b/\b/g; $prod =~ s/\\t/\t/g; $prod =~ s/\\n/\n/g;
253 $prod =~ s/\\f/\f/g; $prod =~ s/\\r/\r/g;
254 chomp ($prod);
256 print "$prod\n"
    [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);
lalr_item_set.java 246 production prod; local
274 prod = (production)p.nextElement();
277 new_itm = new lalr_item(prod,new_lookaheads);
Main.java 718 System.err.println(" Prod table "
782 production prod;
806 prod = (production)p.nextElement();
807 System.err.print(prod.lhs().the_symbol().name() + " ::= ");
808 for (int i=0; i<prod.rhs_length(); i++)
809 if (prod.rhs(i).is_action())
813 ((symbol_part)prod.rhs(i)).the_symbol().name() + " ");
  /external/skia/include/core/
SkMath.h 202 unsigned prod = SkMulS16(a, b) + 1; local
203 return (prod + (prod >> 8)) >> 8;
212 unsigned prod = SkMulS16(a, b) + 128; local
213 return (prod + (prod >> 8)) >> 8;
223 unsigned prod = SkMulS16(a, b) + (1 << (shift - 1)); local
224 return (prod + (prod >> shift)) >> shift;
229 static inline unsigned SkDiv255Round(unsigned prod) {
    [all...]
  /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/sources/android/stlport/test/unit/
accum_test.cpp 44 int prod = accumulate(v.begin(), v.end(), 1, mult); local
45 CPPUNIT_ASSERT(prod==120);
  /external/skia/src/utils/
SkCamera.cpp 25 float prod = 0; local
28 prod += a[0] * b[0];
32 return prod / denom;
34 Sk64 prod, tmp;
36 prod.set(0);
40 prod.add(tmp);
44 prod.div(denom, Sk64::kRound_DivOption);
45 return prod.get32();
53 float prod = 0; local
56 prod += a[0] * b[0]
    [all...]
  /external/v8/test/mjsunit/
array-reduce.js 101 function prod(a, b) { return a * b; } function
119 simpleArray, prod, 1);
135 testReduce("reduce", "EmptyReduceProd", 1, [], [], prod, 1);
140 testReduce("reduce", "EmptyReduceProdNoInit", 1, [], [1], prod);
156 simpleSparseArray, prod, 1);
172 testReduce("reduce", "EmptySparseReduceProdNoInit", 1, [], [,,1,,], prod);
197 verySparseArray, prod, 1);
221 verySparseArray, prod);
247 simpleArray, prod, 1);
263 testReduce("reduceRight", "EmptyReduceRightProd", 1, [], [], prod, 1)
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
BitmapPixels.java 72 int prod = c * a + 128; local
73 return (prod + (prod >> 8)) >> 8;
  /external/libgsm/src/
add.c 45 longword prod = (longword)a * (longword)b + 16384; local
46 prod >>= 15;
47 return prod & 0xFFFF;
  /libcore/luni/src/main/java/org/apache/xml/serializer/
HTMLEntities.properties 226 prod=8719
  /external/kernel-headers/original/linux/
usb.h 485 * @prod: the 16 bit USB Product ID
490 #define USB_DEVICE(vend,prod) \
492 .idProduct = (prod)
497 * @prod: the 16 bit USB Product ID
504 #define USB_DEVICE_VER(vend,prod,lo,hi) \
506 .idVendor = (vend), .idProduct = (prod), \
    [all...]
  /external/skia/src/core/
SkXfermode.cpp 41 unsigned prod = SkMulS16(a, b) + SkMulS16(c, d) + 128;
42 unsigned result = (prod + (prod >> 8)) >> 8;
67 static inline int clamp_div255round(int prod) {
68 if (prod <= 0) {
70 } else if (prod >= 255*255) {
73 return SkDiv255Round(prod);
    [all...]
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
string-weight.h 421 StringWeight<L, S> prod(w1);
423 prod.PushBack(iter.Value());
425 return prod;
  /external/skia/tests/
MathTest.cpp 343 float prod = SkFixedToFloat(numer) * SkFixedToFloat(denom); local
344 float fm = sk_float_sqrt(sk_float_abs(prod));
  /external/libxml2/
xmlreader.c     [all...]
  /external/speex/libspeex/
mdf.c 337 static inline void weighted_spectral_mul_conj(const spx_float_t *w, const spx_float_t p, const spx_word16_t *X, const spx_word16_t *Y, spx_word32_t *prod, int N)
342 prod[0] = FLOAT_MUL32(W,MULT16_16(X[0],Y[0]));
346 prod[i] = FLOAT_MUL32(W,MAC16_16(MULT16_16(X[i],Y[i]), X[i+1],Y[i+1]));
347 prod[i+1] = FLOAT_MUL32(W,MAC16_16(MULT16_16(-X[i+1],Y[i]), X[i],Y[i+1]));
350 prod[i] = FLOAT_MUL32(W,MULT16_16(X[i],Y[i]));
    [all...]

Completed in 341 milliseconds

1 2