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

1 2

  /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 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/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);
  /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/mdnsresponder/Clients/
Makefile 33 LIBS = -L../mDNSPosix/build/prod/ -ldns_sd
  /system/core/fastboot/
fastboot.h 53 void fb_queue_require(const char *prod, const char *var, int invert,
engine.c 91 const char *prod; member in struct:Action
469 if (a->prod) {
470 if (strcmp(a->prod, cur_product) != 0) {
473 cur_product, a->prod, (split - a->start));
510 void fb_queue_require(const char *prod, const char *var,
515 a->prod = prod;
  /external/skia/src/utils/
SkCamera.cpp 16 float prod = 0; local
18 prod += a[0] * b[0];
22 return prod / denom;
24 Sk64 prod, tmp;
26 prod.set(0);
29 prod.add(tmp);
33 prod.div(denom, Sk64::kRound_DivOption);
34 return prod.get32();
41 float prod = 0; local
43 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 66 int prod = c * a + 128; local
67 return (prod + (prod >> 8)) >> 8;
  /external/skia/tests/
MathTest.cpp 25 int prod = src * a31 + (31 - a31) * dst + 16; local
26 prod = (prod + (prod >> 5)) >> 5;
27 return prod;
31 int prod = (src - dst) * a31 + 16; local
32 prod = (prod + (prod >> 5)) >> 5;
33 return dst + prod;
481 float prod = SkFixedToFloat(numer) * SkFixedToFloat(denom); local
    [all...]
  /external/libgsm/src/
add.c 45 longword prod = (longword)a * (longword)b + 16384; local
46 prod >>= 15;
47 return prod & 0xFFFF;

Completed in 753 milliseconds

1 2