Searched defs:values (Results 1 - 25 of 969) sorted by relevance

1234567891011>>

/external/llvm/test/MC/COFF/
H A Dsecrel-variant.s6 values: label
11 movq values@SECREL32(%rax), %rcx
12 movq values@SECREL32+8(%rax), %rax
16 // CHECK-NEXT: 0x3 IMAGE_REL_AMD64_SECREL values
17 // CHECK-NEXT: 0xA IMAGE_REL_AMD64_SECREL values
/external/clang/test/CodeGen/
H A D2004-01-01-UnknownInitSize.c10 int values []; member in struct:one
/external/clang/test/Modules/Inputs/PR27890/
H A Da.h1 template <class DataType> DataType values(DataType) { __builtin_va_list ValueArgs; return DataType(); } function
/external/webrtc/talk/app/webrtc/objc/public/
H A DRTCStatsReport.h37 @property(nonatomic, readonly) NSArray* values; // NSArray of RTCPair*. variable
/external/webrtc/webrtc/api/objc/
H A DRTCStatsReport.h28 @property(nonatomic, readonly) NSDictionary<NSString *, NSString *> *values; variable
/external/clang/test/CodeGenCXX/
H A Dvariadic-templates.cpp15 int values[sizeof...(T)+1] = { T::value... }; local
/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/llvm/tools/llvm-c-test/
H A Dmetadata.c19 LLVMValueRef values[] = { LLVMConstInt(LLVMInt32Type(), 0, 0) }; local
22 LLVMAddNamedMetadataOperand(m, "name", LLVMMDNode(values, 1));
31 LLVMValueRef values[] = { LLVMConstInt(LLVMInt32Type(), 0, 0) }; local
37 LLVMMDNode(values, 1));
/external/curl/tests/unit/
H A Dunit1394.c44 const char *values[] = { variable
78 for(p = values; *p; p += 3) {
/external/fio/t/
H A Dieee754.c4 static double values[] = { -17.23, 17.23, 123.4567, 98765.4321, 0.0 }; variable
14 i = fio_double_to_uint64(values[j]);
16 printf("%f -> %f\n", values[j], f);
18 } while (values[j] != 0.0);
/external/python/cpython2/Modules/_ctypes/libffi/testsuite/libffi.call/
H A Dfloat2.c22 void *values[MAX_ARGS]; local
27 values[0] = &f;
42 ffi_call(&cif, FFI_FN(ldblit), &ld, values);
H A Dreturn_dbl.c19 void *values[MAX_ARGS]; local
23 values[0] = &dbl;
31 ffi_call(&cif, FFI_FN(return_dbl), &rdbl, values);
H A Dreturn_fl.c18 void *values[MAX_ARGS]; local
22 values[0] = &fl;
30 ffi_call(&cif, FFI_FN(return_fl), &rfl, values);
H A Dreturn_ldl.c18 void *values[MAX_ARGS]; local
22 values[0] = &ldl;
30 ffi_call(&cif, FFI_FN(return_ldl), &rldl, values);
H A Dreturn_ll.c18 void *values[MAX_ARGS]; local
23 values[0] = &ll;
31 ffi_call(&cif, FFI_FN(return_ll), &rlonglong, values);
37 ffi_call(&cif, FFI_FN(return_ll), &rlonglong, values);
H A Dreturn_sc.c18 void *values[MAX_ARGS]; local
23 values[0] = &sc;
32 ffi_call(&cif, FFI_FN(return_sc), &rint, values);
H A Dreturn_uc.c19 void *values[MAX_ARGS]; local
25 values[0] = &uc;
34 ffi_call(&cif, FFI_FN(return_uc), &rint, 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);
/external/webp/src/dsp/
H A Ddec_sse41.c27 const __m128i values = _mm_shuffle_epi8(in, kShuffle3); local
28 _mm_storeu_si128((__m128i*)dst, values);
/external/ImageMagick/MagickCore/
H A Dthread.c57 **values,
106 (*keys)->values=AcquireQuantumMemory((*keys)->number_threads,
108 if ((*keys)->values == (void *) NULL)
111 (void) memset((*keys)->values,0,(*keys)->number_threads*
160 (keys->values[i] != (void *) NULL))
162 keys->destructor(keys->values[i]);
163 keys->values[i]=(void *) NULL;
207 return(keys->values[GetOpenMPThreadId()]);
252 keys->values[GetOpenMPThreadId()]=(void *) value;
55 **values, member in struct:_MagickThreadValue
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/
H A DAbstractListMultimapTester.java34 protected void assertGet(K key, V... values) { argument
35 assertGet(key, Arrays.asList(values));
38 protected void assertGet(K key, Collection<V> values) { argument
39 assertThat(multimap().get(key)).has().exactlyAs(values).inOrder();
41 if (!values.isEmpty()) {
42 assertThat(multimap().asMap().get(key)).has().exactlyAs(values).inOrder();
48 assertEquals(values.size(), multimap().get(key).size());
49 assertEquals(values.size() > 0, multimap().containsKey(key));
50 assertEquals(values.size() > 0, multimap().keySet().contains(key));
51 assertEquals(values
[all...]
/external/hamcrest/hamcrest-core/src/main/java/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;
16 return values.hasNext();
21 return new SelfDescribingValue<T>(values.next());
26 values.remove();
/external/libbrillo/brillo/
H A Dmap_utils_unittest.cc39 std::vector<int> values = GetMapValues(map_); local
40 EXPECT_EQ((std::vector<int>{1, 2, 3, 4, 5}), values);
/external/llvm/unittests/IR/
H A DWaymarkTest.cpp25 Value * values[22]; local
26 std::transform(tail, tail + 22, values, [&](char c) {
32 const CallInst *A = CallInst::Create(F.get(), makeArrayRef(values));
/external/nanopb-c/generator/google/protobuf/internal/
H A Denum_type_wrapper.py42 """A utility for finding the names of enum values."""
72 for value_descriptor in self._enum_type.values]
74 def values(self): member in class:EnumTypeWrapper
75 """Return a list of the integer values in the enum.
81 for value_descriptor in self._enum_type.values]
89 for value_descriptor in self._enum_type.values]

Completed in 807 milliseconds

1234567891011>>