Searched refs:val (Results 201 - 225 of 3471) sorted by relevance

1234567891011>>

/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-x87.js33 var val = 2.1*a[1]*a[0]*a[1*2*3*0]*a[1*1]*1.0;
34 assertEquals(8.4, val);
/external/clang/test/CodeGen/
H A Daarch64-inline-asm.c53 int val; local
54 asm("ldxr %0, %1" : "=r"(val) : "Q"(var));
H A Dconditional-gnu-ext.c24 _Complex int getComplex(_Complex int val) { argument
28 return val;
H A Dnamed_reg_global.c40 void fn2(struct p4_Thread *val) { argument
41 p4TH = val;
/external/clang/test/CodeGenCXX/
H A D2006-09-12-OpaqueStructCrash.cpp10 ~B () { delete [] val; }
12 Ty* val; member in struct:B
/external/clang/test/PCH/
H A Dfunctions.c10 float *test_f1(int val, double x, double y) { argument
11 if (val > 5)
/external/e2fsprogs/intl/
H A Deval-plural.h37 return pexp->val.num;
46 unsigned long int arg = plural_eval (pexp->val.args[0], n);
51 unsigned long int leftarg = plural_eval (pexp->val.args[0], n);
53 return leftarg || plural_eval (pexp->val.args[1], n);
55 return leftarg && plural_eval (pexp->val.args[1], n);
58 unsigned long int rightarg = plural_eval (pexp->val.args[1], n);
102 unsigned long int boolarg = plural_eval (pexp->val.args[0], n);
103 return plural_eval (pexp->val.args[boolarg ? 1 : 2], n);
/external/libcxx/test/numerics/complex.number/cmplx.over/
H A Dimag.pass.cpp29 constexpr T val {x};
30 static_assert(std::imag(val) == 0, "");
31 constexpr std::complex<T> t{val, val};
43 constexpr T val {x};
44 static_assert(std::imag(val) == 0, "");
45 constexpr std::complex<T> t{val, val};
/external/libopus/celt/tests/
H A Dtest_unit_laplace.c59 int val[10000], decay[10000]; local
64 val[0] = 3; decay[0] = 6000;
65 val[1] = 0; decay[1] = 5800;
66 val[2] = -1; decay[2] = 5600;
69 val[i] = rand()%15-7;
73 ec_laplace_encode(&enc, &val[i],
84 if (d != val[i])
86 fprintf (stderr, "Got %d instead of %d\n", d, val[i]);
/external/lldb/test/lang/cpp/dynamic-value/
H A Dsbvalue-cast.cpp20 Base(int val) : m_base_val (val) {} argument
36 DerivedA(int val) : Base(val*2), m_a_val(val) { argument
50 DerivedB(int val) : Base(val), m_b_val(val*3) { argument
/external/lldb/tools/debugserver/scripts/
H A Ddbgnub-config.pl33 my $val;
34 while (($key, $val) = each %ENV)
36 $val =~ s/\n/\n\/\/ /;
37 printf CONFIG "// %s = %s\n", $key, $val;
/external/oprofile/libutil++/
H A Dcached_value.h38 value_type const reset(value_type const & val) { argument
39 value = val;
/external/qemu/
H A Dmemory-android.c12 uint64_t val, unsigned size)
15 addr, val);
11 io_mem_write(int io_index, hwaddr addr, uint64_t val, unsigned size) argument
/external/smack/src/com/kenai/jbosh/
H A DAttrAck.java28 * @param val attribute getValue
31 private AttrAck(final String val) throws BOSHException { argument
32 super(val);
H A DAttrHold.java28 * @param val attribute getValue
31 private AttrHold(final String val) throws BOSHException { argument
32 super(val);
H A DAttrInactivity.java28 * @param val attribute value
31 private AttrInactivity(final String val) throws BOSHException { argument
32 super(val);
H A DAttrMaxPause.java30 * @param val attribute getValue
33 private AttrMaxPause(final String val) throws BOSHException { argument
34 super(val);
H A DAttrPause.java30 * @param val attribute getValue
33 private AttrPause(final String val) throws BOSHException { argument
34 super(val);
H A DAttrRequests.java28 * @param val attribute value
31 private AttrRequests(final String val) throws BOSHException { argument
32 super(val);
H A DAttrWait.java28 * @param val attribute getValue
31 private AttrWait(final String val) throws BOSHException { argument
32 super(val);
/external/smali/baksmali/src/main/java/org/jf/baksmali/Renderers/
H A DBooleanRenderer.java36 public static void writeTo(IndentingWriter writer, boolean val) throws IOException { argument
37 if (val) {
H A DDoubleRenderer.java36 public static void writeTo(IndentingWriter writer, double val) throws IOException { argument
37 writer.write(Double.toString(val));
H A DFloatRenderer.java36 public static void writeTo(IndentingWriter writer, float val) throws IOException { argument
37 writer.write(Float.toString(val));
/external/chromium_org/third_party/opus/src/celt/
H A Dlaplace.c54 int val = *value; local
56 if (val)
60 s = -(val<0);
61 val = (val+s)^s;
65 for (i=1; fs > 0 && i < val; i++)
78 di = IMIN(val - i, ndi_max - 1);
96 int val=0; local
103 val++;
113 val
[all...]
/external/fio/t/
H A Daxmap.c38 uint64_t val; local
40 if (lfsr_next(&lfsr, &val, osize)) {
45 if (axmap_isset(map, val)) {
50 axmap_set(map, val);
51 if (!axmap_isset(map, val)) {
76 uint64_t val = bit_off; local
83 while (val + 128 <= map_size) {
85 for (i = val; i < val + 128; i++) {
86 if (axmap_isset(map, val
[all...]

Completed in 1654 milliseconds

1234567891011>>