HomeSort by relevance Sort by last modified time
    Searched defs:values (Results 101 - 125 of 6006) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/python/cpython2/Modules/_ctypes/libffi/testsuite/libffi.call/
strlen3.c 20 void *values[MAX_ARGS]; local
26 values[1] = (void*) &s;
27 values[0] = (void*) &v2;
35 ffi_call(&cif, FFI_FN(my_f), &rint, values);
40 ffi_call(&cif, FFI_FN(my_f), &rint, values);
45 ffi_call(&cif, FFI_FN(my_f), &rint, values);
strlen4.c 20 void *values[MAX_ARGS]; local
28 values[2] = (void*) &v1;
29 values[1] = (void*) &s;
30 values[0] = (void*) &v2;
39 ffi_call(&cif, FFI_FN(my_f), &rint, values);
45 ffi_call(&cif, FFI_FN(my_f), &rint, values);
51 ffi_call(&cif, FFI_FN(my_f), &rint, values);
unwindtest_ffi_call.cc 21 void *values[MAX_ARGS]; local
29 values[0] = &si;
31 values[1] = &ss;
33 values[2] = ≻
45 ffi_call(&cif, FFI_FN(checking), &rint, values);
  /external/python/cpython3/Modules/_ctypes/libffi/testsuite/libffi.call/
float3.c 26 void *values[MAX_ARGS]; local
34 values[0] = &f;
36 values[1] = &d;
38 values[2] = &ld;
50 ffi_call(&cif, FFI_FN(floating_1), &rd, values);
55 values[0] = &ld;
57 values[1] = &d;
59 values[2] = &f;
67 ffi_call(&cif, FFI_FN(floating_2), &rd, values);
many.c 30 void *values[13]; local
38 values[i] = &fa[i];
46 ffi_call(&cif, FFI_FN(many), &f, values);
negint.c 21 void *values[MAX_ARGS]; local
29 values[0] = &si;
31 values[1] = &ss;
33 values[2] = ≻
45 ffi_call(&cif, FFI_FN(checking), &rint, values);
return_dbl1.c 18 void *values[MAX_ARGS]; local
26 values[0] = &dbl1;
27 values[1] = &fl2;
28 values[2] = &in3;
29 values[3] = &dbl4;
39 ffi_call(&cif, FFI_FN(return_dbl), &rdbl, values);
return_dbl2.c 18 void *values[MAX_ARGS]; local
25 values[0] = &dbl1;
26 values[1] = &dbl2;
27 values[2] = &in3;
28 values[3] = &dbl4;
38 ffi_call(&cif, FFI_FN(return_dbl), &rdbl, values);
return_fl1.c 18 void *values[MAX_ARGS]; local
23 values[0] = &fl1;
24 values[1] = &fl2;
32 ffi_call(&cif, FFI_FN(return_fl), &rfl, values);
return_fl3.c 18 void *values[MAX_ARGS]; local
25 values[0] = &fl1;
26 values[1] = &fl2;
27 values[2] = &in3;
28 values[3] = &fl4;
38 ffi_call(&cif, FFI_FN(return_fl), &rfl, values);
return_ll1.c 19 void *values[MAX_ARGS]; local
27 values[0] = &ll0;
28 values[1] = &ll1;
29 values[2] = &ll2;
39 ffi_call(&cif, FFI_FN(return_ll), &rlonglong, values);
return_sl.c 18 void *values[MAX_ARGS]; local
24 values[0] = &l1;
25 values[1] = &l2;
33 ffi_call(&cif, FFI_FN(return_sl), &res, values);
return_ul.c 18 void *values[MAX_ARGS]; local
24 values[0] = &ul1;
25 values[1] = &ul2;
33 ffi_call(&cif, FFI_FN(return_ul), &res, values);
strlen2.c 20 void *values[MAX_ARGS]; local
26 values[0] = (void*) &s;
27 values[1] = (void*) &v2;
35 ffi_call(&cif, FFI_FN(my_f), &rint, values);
40 ffi_call(&cif, FFI_FN(my_f), &rint, values);
45 ffi_call(&cif, FFI_FN(my_f), &rint, values);
strlen3.c 20 void *values[MAX_ARGS]; local
26 values[1] = (void*) &s;
27 values[0] = (void*) &v2;
35 ffi_call(&cif, FFI_FN(my_f), &rint, values);
40 ffi_call(&cif, FFI_FN(my_f), &rint, values);
45 ffi_call(&cif, FFI_FN(my_f), &rint, values);
strlen4.c 20 void *values[MAX_ARGS]; local
28 values[2] = (void*) &v1;
29 values[1] = (void*) &s;
30 values[0] = (void*) &v2;
39 ffi_call(&cif, FFI_FN(my_f), &rint, values);
45 ffi_call(&cif, FFI_FN(my_f), &rint, values);
51 ffi_call(&cif, FFI_FN(my_f), &rint, values);
unwindtest_ffi_call.cc 21 void *values[MAX_ARGS]; local
29 values[0] = &si;
31 values[1] = &ss;
33 values[2] = ≻
45 ffi_call(&cif, FFI_FN(checking), &rint, values);
  /external/python/cpython3/Tools/scripts/
make_ctype.py 60 values = [] variable
66 values.append("0x%02x" % i)
67 print(" %s," % ", ".join(values))
75 values = [] variable
81 values.append("0x%02x" % i)
82 print(" %s," % ", ".join(values))
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/EncodedValue/
ArrayEncodedValueAdaptor.java 45 Collection<? extends EncodedValue> values = arrayEncodedValue.getValue(); local
46 if (values.size() == 0) {
54 for (EncodedValue encodedValue: values) {
  /external/swiftshader/src/Common/
Configurator.hpp 58 std::vector<std::string> values; member in struct:sw::Configurator::Section
  /external/tensorflow/tensorflow/compiler/tf2xla/kernels/
pack_op.cc 46 std::vector<xla::ComputationDataHandle> values; variable
48 OP_REQUIRES_OK(ctx, ctx->InputList("values", &values, &shapes));
49 const int num = values.size();
58 "Shapes of all inputs must match: values[0].shape = ",
59 shapes[0].DebugString(), " != values[", i, "].shape = ",
80 ctx->builder()->Reshape(values[i], child_shape.dim_sizes());
  /external/tensorflow/tensorflow/core/example/
feature_util_test.cc 44 auto values = GetFeatureValues<protobuf_int64>(feature); local
46 ASSERT_EQ(1, values.size());
47 EXPECT_EQ(42, values.Get(0));
94 std::vector<int> values{1, 2, 3};
96 std::copy(values.begin(), values.end(),
111 auto values = GetFeatureValues<float>(feature); local
113 ASSERT_EQ(1, values.size());
114 EXPECT_NEAR(3.14, values.Get(0), kTolerance);
182 auto values = GetFeatureValues<string>(feature) local
306 auto values = GetFeatureValues<protobuf_int64>("tag", se.context()); local
    [all...]
  /external/turbine/java/com/google/turbine/binder/bound/
AnnotationValue.java 27 private final ImmutableMap<String, Const> values; field in class:AnnotationValue
29 public AnnotationValue(ClassSymbol sym, ImmutableMap<String, Const> values) {
31 this.values = values;
50 public ImmutableMap<String, Const> values() { method in class:AnnotationValue
51 return values;
  /frameworks/base/core/java/android/transition/
TransitionValues.java 27 * Data structure which holds cached values for the transition.
28 * The view field is the target which all of the values pertain to.
29 * The values field is a map which holds information for fields
31 * be unique to avoid clobbering values stored by other transitions,
36 * <p>These values are cached during the
38 * capture} phases of a scene change, once when the start values are captured
39 * and again when the end values are captured. These start/end values are then
47 * The View with these values
52 * The set of values tracked by transitions for this scen
54 public final Map<String, Object> values = new ArrayMap<String, Object>(); field in class:TransitionValues
    [all...]
  /frameworks/base/core/tests/coretests/src/android/widget/gridview/
GridPadding.java 38 String values[] = new String[1000]; local
40 values[i] = String.valueOf(i);
45 android.R.layout.simple_list_item_1, values));

Completed in 282 milliseconds

1 2 3 45 6 7 8 91011>>