Searched refs:values (Results 1 - 25 of 1308) sorted by relevance

1234567891011>>

/external/linux-tools-perf/util/
H A Dvalues.c4 #include "values.h"
6 void perf_read_values_init(struct perf_read_values *values) argument
8 values->threads_max = 16;
9 values->pid = malloc(values->threads_max * sizeof(*values->pid));
10 values->tid = malloc(values->threads_max * sizeof(*values->tid));
11 values
26 perf_read_values_destroy(struct perf_read_values *values) argument
43 perf_read_values__enlarge_threads(struct perf_read_values *values) argument
56 perf_read_values__findnew_thread(struct perf_read_values *values, u32 pid, u32 tid) argument
78 perf_read_values__enlarge_counters(struct perf_read_values *values) argument
98 perf_read_values__findnew_counter(struct perf_read_values *values, u64 rawid, const char *name) argument
117 perf_read_values_add_value(struct perf_read_values *values, u32 pid, u32 tid, u64 rawid, const char *name, u64 value) argument
129 perf_read_values__display_pretty(FILE *fp, struct perf_read_values *values) argument
175 perf_read_values__display_raw(FILE *fp, struct perf_read_values *values) argument
225 perf_read_values_display(FILE *fp, struct perf_read_values *values, int raw) argument
[all...]
H A Dvalues.h17 void perf_read_values_init(struct perf_read_values *values);
18 void perf_read_values_destroy(struct perf_read_values *values);
20 void perf_read_values_add_value(struct perf_read_values *values,
24 void perf_read_values_display(FILE *fp, struct perf_read_values *values,
/external/clang/test/CodeGen/
H A D2004-01-01-UnknownInitSize.c10 int values []; member in struct:one
/external/hamcrest/src/org/hamcrest/internal/
H A DSelfDescribingValueIterator.java8 private Iterator<T> values; field in class:SelfDescribingValueIterator
10 public SelfDescribingValueIterator(Iterator<T> values) { argument
11 this.values = values;
15 return values.hasNext();
19 return new SelfDescribingValue<T>(values.next());
23 values.remove();
/external/proguard/src/proguard/evaluation/
H A DStack.java36 protected Value[] values; field in class:Stack
43 * space required by Category 2 values.
47 values = new Value[maxSize];
56 // Create the values array.
57 this(stack.values.length);
66 * operations, accounting for the double space required by Category 2 values.
79 // Is the values array large enough?
80 if (maxSize > values.length)
83 values = new Value[maxSize];
94 * Copies the values o
[all...]
/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
H A Dp23.cpp12 void unexpanded_capture(Ts ...values) { argument
13 auto unexp = [values] {}; // expected-error{{initializer contains unexpanded parameter pack 'values'}}
17 void implicit_capture(Ts ...values) { argument
18 auto implicit = [&] { print(values...); };
23 void do_print(Ts... values) { argument
24 auto bycopy = [values...]() { print(values...); };
26 auto byref = [&values...]() { print(values
[all...]
/external/oprofile/libop/
H A Dop_mangle.c38 char * op_mangle_filename(struct mangle_values const * values) argument
42 int anon = values->flags & MANGLE_ANON;
43 int cg_anon = values->flags & MANGLE_CG_ANON;
48 char const * image_name = values->dep_name;
49 char const * anon_name = values->anon_name;
50 char const * dep_name = values->image_name;
51 char const * cg_image_name = values->cg_image_name;
54 + strlen(values->event_name) + 1 + strlen(image_name) + 1;
56 if (values->flags & MANGLE_CALLGRAPH)
70 append_image(mangled, values
[all...]
/external/proguard/src/proguard/evaluation/value/
H A DInstructionOffsetValue.java36 private int[] values; field in class:InstructionOffsetValue
46 this.values = new int[] { value };
50 public InstructionOffsetValue(int[] values) argument
52 this.values = values;
58 return values == null ? 0 : values.length;
64 return values[index];
74 if (values != null)
76 for (int index = 0; index < values
[all...]
/external/smali/dexlib/src/main/java/org/jf/dexlib/EncodedValue/
H A DArrayEncodedSubValue.java43 public final EncodedValue[] values; field in class:ArrayEncodedSubValue
52 values = new EncodedValue[in.readUnsignedLeb128()];
54 for (int i=0; i<values.length; i++) {
55 values[i] = EncodedValue.readEncodedValue(dexFile, in);
60 * Constructs a new <code>ArrayEncodedSubValue</code> with the given values
61 * @param values The array values
63 public ArrayEncodedSubValue(EncodedValue[] values) { argument
64 this.values = values;
[all...]
/external/webkit/PerformanceTests/Parser/resources/
H A Drunner.js18 function computeAverage(values) {
20 for (var i = 0; i < values.length; i++)
21 sum += values[i];
22 return sum / values.length;
25 function computeMax(values) {
26 var max = values.length ? values[0] : 0;
27 for (var i = 1; i < values.length; i++) {
28 if (max < values[i])
29 max = values[
[all...]
/external/easymock/src/org/easymock/
H A DCapture.java35 private final List<T> values = new ArrayList<T>(2); field in class:Capture
58 values.clear();
65 return !values.isEmpty();
77 if (values.isEmpty()) {
80 if (values.size() > 1) {
84 return values.get(values.size() - 1);
88 * Return all captured values. It returns the actual list so you can modify
91 * @return The currently captured values
94 return values;
[all...]
/external/oprofile/daemon/
H A Dopd_mangling.c72 struct mangle_values values; local
75 values.flags = 0;
78 values.image_name = sf->kernel->name;
79 values.flags |= MANGLE_KERNEL;
81 values.flags |= MANGLE_ANON;
82 values.image_name = mangle_anon(sf->anon);
83 values.anon_name = sf->anon->name;
85 values.image_name = find_cookie(sf->cookie);
88 values.dep_name = get_dep_name(sf);
89 if (!values
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x500/
H A DRDN.java15 private ASN1Set values; field in class:RDN
17 private RDN(ASN1Set values) argument
19 this.values = values;
49 this.values = new DERSet(new DERSequence(v));
54 this.values = new DERSet(attrTAndV);
64 this.values = new DERSet(aAndVs);
69 return this.values.size() > 1;
79 return this.values.size();
84 if (this.values
[all...]
/external/webkit/Source/WebCore/svg/properties/
H A DSVGPathSegListPropertyTearOff.h46 SVGPathSegList& values = m_animatedProperty->values(); local
48 unsigned size = values.size();
50 ListItemType& item = values.at(i);
54 values.remove(i);
70 SVGPathSegList& values = m_animatedProperty->values(); local
71 return Base::numberOfItemsValues(values);
83 SVGPathSegList& values = m_animatedProperty->values(); local
98 SVGPathSegList& values = m_animatedProperty->values(); local
111 SVGPathSegList& values = m_animatedProperty->values(); local
126 SVGPathSegList& values = m_animatedProperty->values(); local
142 SVGPathSegList& values = m_animatedProperty->values(); local
[all...]
H A DSVGListProperty.h56 void clearValues(PropertyType& values, ExceptionCode& ec) argument
61 values.clear();
72 animatedList->values().clear();
77 unsigned numberOfItemsValues(PropertyType& values) const
79 return values.size();
85 return animatedList->values().size();
89 ListItemType initializeValues(PropertyType& values, const ListItemType& newItem, ExceptionCode& ec) argument
98 values.clear();
99 values.append(newItem);
117 PropertyType& values local
138 canGetItem(PropertyType& values, unsigned index, ExceptionCode& ec) argument
148 getItemValues(PropertyType& values, unsigned index, ExceptionCode& ec) argument
160 PropertyType& values = animatedList->values(); local
182 insertItemBeforeValues(PropertyType& values, const ListItemType& newItem, unsigned index, ExceptionCode& ec) argument
214 PropertyType& values = animatedList->values(); local
239 canReplaceItem(PropertyType& values, unsigned index, ExceptionCode& ec) argument
252 replaceItemValues(PropertyType& values, const ListItemType& newItem, unsigned index, ExceptionCode& ec) argument
277 PropertyType& values = animatedList->values(); local
316 canRemoveItem(PropertyType& values, unsigned index, ExceptionCode& ec) argument
329 removeItemValues(PropertyType& values, unsigned index, ExceptionCode& ec) argument
344 PropertyType& values = animatedList->values(); local
365 appendItemValues(PropertyType& values, const ListItemType& newItem, ExceptionCode& ec) argument
392 PropertyType& values = animatedList->values(); local
[all...]
/external/clang/test/FixIt/
H A Dno-macro-fixit.c8 va_list values; local
12 while (value = va_arg(values, int)) { // expected-warning {{using the result of an assignment as a condition without parentheses}} \
/external/webkit/LayoutTests/http/tests/resources/
H A Dpost-and-verify.cgi15 $values{$key} = $value;
18 open FILE, $values{'path'} || die("Could not open file\n");
19 seek FILE, $values{'start'}, 0;
20 read FILE, $expectedData, $values{'length'};
/external/valgrind/main/none/tests/s390x/
H A Dtrtt.stdout.exp2 the translated values is
4 the translated values is
6 the translated values is
8 the translated values is ffff dddd
10 the translated values is ffff dddd ffff cccc abab
12 the translated values is 0 0 0 0 0
14 the translated values is ffff dddd ffff 0 0
16 the translated values is ffff dddd ffff cccc abab caca bcbc cccc dada 0
H A Dtroo.stdout.exp2 the translated values are
4 the translated values are
6 the translated values are ff bb dd ab ca
8 the translated values are ff bb dd ab ca bc cc da ea aa
10 the translated values are
12 the translated values are ff
14 the translated values are ff bb dd ab ca bc cc da
/external/libffi/testsuite/libffi.call/
H A Dreturn_ll1.c18 void *values[MAX_ARGS]; local
26 values[0] = &ll0;
27 values[1] = &ll1;
28 values[2] = &ll2;
38 ffi_call(&cif, FFI_FN(return_ll), &rlonglong, values);
H A Dstrlen.c19 void *values[MAX_ARGS]; local
24 values[0] = (void*) &s;
31 ffi_call(&cif, FFI_FN(my_strlen), &rint, values);
35 ffi_call(&cif, FFI_FN(my_strlen), &rint, values);
39 ffi_call(&cif, FFI_FN(my_strlen), &rint, values);
H A Dfloat.c24 void *values[MAX_ARGS]; local
33 values[0] = &si1;
35 values[1] = &f;
37 values[2] = &d;
39 values[3] = &ld;
52 ffi_call(&cif, FFI_FN(floating), &rint, values);
H A Dpromotion.c21 void *values[MAX_ARGS]; local
33 values[0] = &sc;
34 values[1] = &ss;
35 values[2] = &uc;
36 values[3] = &us;
53 ffi_call(&cif, FFI_FN(promotion), &rint, values);
/external/libffi/testsuite/libffi.special/
H A Dunwindtest_ffi_call.cc20 void *values[MAX_ARGS]; local
28 values[0] = &si;
30 values[1] = &ss;
32 values[2] = &sc;
44 ffi_call(&cif, FFI_FN(checking), &rint, values);
/external/dexmaker/src/dx/java/com/android/dx/util/
H A DIntList.java29 private int[] values; field in class:IntList
34 /** whether the values are currently sorted */
87 values = new int[initialCapacity];
103 result = (result * 31) + values[i];
131 if (values[i] != otherList.values[i]) {
150 sb.append(values[i]);
177 return values[n];
198 values[n] = value;
219 values[siz
[all...]

Completed in 6572 milliseconds

1234567891011>>