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

1234567891011>>

/external/clang/test/CodeGen/
H A D2004-01-01-UnknownInitSize.c10 int values []; member in struct:one
/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/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/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/src/main/java/org/bouncycastle/asn1/x500/
H A DRDN.java14 private ASN1Set values; field in class:RDN
16 private RDN(ASN1Set values) argument
18 this.values = values;
48 this.values = new DERSet(new DERSequence(v));
53 this.values = new DERSet(attrTAndV);
61 this.values = new DERSet(aAndVs);
66 return this.values.size() > 1;
71 if (this.values.size() == 0)
76 return AttributeTypeAndValue.getInstance(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/junit/src/junit/runner/
H A DSorter.java12 public void swap(Vector values, int left, int right); argument
15 public static void sortStrings(Vector values , int left, int right, Swapper swapper) {
18 String mid= (String)values.elementAt((left + right) / 2);
20 while (((String)(values.elementAt(left))).compareTo(mid) < 0)
22 while (mid.compareTo((String)(values.elementAt(right))) < 0)
25 swapper.swap(values, left, right);
32 sortStrings(values, oleft, right, swapper);
34 sortStrings(values, left, oright, swapper);
/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/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);
H A Dreturn_dbl1.c18 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);
H A Dreturn_dbl2.c18 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);
H A Dreturn_fl2.c22 void *values[MAX_ARGS]; local
30 values[0] = &fl1;
31 values[1] = &fl2;
32 values[2] = &fl3;
33 values[3] = &fl4;
43 ffi_call(&cif, FFI_FN(return_fl), &rfl, values);
H A Dreturn_fl3.c18 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);
H A Dreturn_dbl.c18 void *values[MAX_ARGS]; local
22 values[0] = &dbl;
30 ffi_call(&cif, FFI_FN(return_dbl), &rdbl, 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/skia/src/core/
H A DSkScalar.cpp20 const SkScalar values[], int length) {
23 SkASSERT(values != NULL);
31 // Could use sentinel values to eliminate conditionals, but since the
34 return values[length-1];
36 return values[0];
41 return SkScalarInterp(values[right-1], values[right], fract);
19 SkScalarInterpFunc(SkScalar searchKey, const SkScalar keys[], const SkScalar values[], int length) argument
/external/webkit/Source/WebCore/svg/
H A DSVGTransformable.cpp36 static int parseTransformParamList(const UChar*& ptr, const UChar* end, float* values, int required, int optional) argument
48 if (ptr >= end || !parseNumber(ptr, end, values[requiredParams], false))
68 if (ptr >= end || !parseNumber(ptr, end, values[requiredParams + optionalParams], false))
103 float values[] = {0, 0, 0, 0, 0, 0}; local
104 if ((valueCount = parseTransformParamList(ptr, end, values, requiredValuesForType[type], optionalValuesForType[type])) < 0)
109 transform.setSkewX(values[0]);
112 transform.setSkewY(values[0]);
116 transform.setScale(values[0], values[0]);
118 transform.setScale(values[
[all...]

Completed in 411 milliseconds

1234567891011>>