Searched defs:Data (Results 76 - 100 of 260) sorted by relevance

1234567891011

/external/llvm/tools/lli/ChildTarget/
H A DChildTarget.cpp36 int WriteBytes(const void *Data, size_t Size) { argument
37 return RPC.WriteBytes(Data, Size) ? Size : -1;
39 int ReadBytes(void *Data, size_t Size) { argument
40 return RPC.ReadBytes(Data, Size) ? Size : -1;
/external/llvm/tools/lli/
H A DRemoteTargetExternal.cpp52 bool RemoteTargetExternal::loadData(uint64_t Address, const void *Data, size_t Size) { argument
55 if (!SendLoadSection(Address, Data, (uint32_t)Size, false)) {
76 bool RemoteTargetExternal::loadCode(uint64_t Address, const void *Data, size_t Size) { argument
79 if (!SendLoadSection(Address, Data, (uint32_t)Size, true)) {
136 const void *Data,
146 AppendWrite(Data, Size);
187 bool RemoteTargetExternal::Receive(LLIMessageType Msg, int32_t &Data) { argument
190 AppendRead(&Data, 4);
198 bool RemoteTargetExternal::Receive(LLIMessageType Msg, uint64_t &Data) { argument
201 AppendRead(&Data,
135 SendLoadSection(uint64_t Addr, const void *Data, uint32_t Size, bool IsCode) argument
311 AppendWrite(const void *Data, uint32_t Size) argument
316 AppendRead(void *Data, uint32_t Size) argument
[all...]
/external/llvm/unittests/IR/
H A DValueMapTest.cpp64 typename ValueMapConfig<TypeParam*>::ExtraData Data; local
65 ValueMap<TypeParam*, int> VM3(Data, 16); (void)VM3;
187 static void onRAUW(const ExtraData &Data, KeyT Old, KeyT New) { argument
188 *Data.CalledRAUW = true;
189 EXPECT_FALSE(Data.M->try_lock()) << "Mutex should already be locked.";
191 static void onDelete(const ExtraData &Data, KeyT Old) { argument
192 *Data.CalledDeleted = true;
193 EXPECT_FALSE(Data.M->try_lock()) << "Mutex should already be locked.";
195 static MutexT *getMutex(const ExtraData &Data) { return Data argument
203 typename ConfigType::ExtraData Data = {&M, &CalledRAUW, &CalledDeleted}; local
242 onRAUW(const ExtraData &Data, KeyT Old, KeyT New) argument
245 onDelete(const ExtraData &Data, KeyT Old) argument
252 typename CountOps<TypeParam*>::ExtraData Data = {&Deletions, &RAUWs}; local
[all...]
/external/mesa3d/src/gallium/drivers/radeon/MCTargetDesc/
H A DAMDGPUAsmBackend.cpp48 virtual void applyFixup(const MCFixup &Fixup, char *Data, unsigned DataSize, argument
/external/mesa3d/src/mesa/main/
H A Dhash.c54 void *Data; /**< the entry's data */ member in struct:HashEntry
107 if (entry->Data) {
139 return entry->Data;
197 if (entry->Data) {
201 entry->Data = data;
211 entry->Data = data;
295 callback(entry->Key, entry->Data, userData);
334 callback(entry->Key, entry->Data, userData);
425 _mesa_debug(NULL, "%u %p\n", entry->Key, entry->Data);
/external/clang/include/clang/AST/
H A DNestedNameSpecifier.h227 void *Data; member in class:clang::NestedNameSpecifierLoc
239 NestedNameSpecifierLoc() : Qualifier(nullptr), Data(nullptr) { }
243 NestedNameSpecifierLoc(NestedNameSpecifier *Qualifier, void *Data) argument
244 : Qualifier(Qualifier), Data(Data) { }
261 void *getOpaqueData() const { return Data; }
313 return NestedNameSpecifierLoc(Qualifier->getPrefix(), Data);
326 return X.Qualifier == Y.Qualifier && X.Data == Y.Data;
/external/clang/include/clang/Frontend/
H A DVerifyDiagnosticConsumer.h232 llvm::PointerIntPair<const FileEntry *, 1, bool> Data; member in class:clang::VerifyDiagnosticConsumer::UnparsedFileStatus
235 : Data(File, FoundDirectives) {}
236 const FileEntry *getFile() const { return Data.getPointer(); }
237 bool foundDirectives() const { return Data.getInt(); }
/external/clang/include/clang/Rewrite/Core/
H A DRewriteRope.h36 char Data[1]; // Variable sized. member in struct:clang::RopeRefCountString
71 return StrData->Data[Offset+StartOffs];
74 return StrData->Data[Offset+StartOffs];
/external/clang/include/clang/Sema/
H A DTemplateDeduction.h182 void *Data; member in struct:clang::DeductionFailureInfo
/external/clang/lib/CodeGen/
H A DCGDebugInfo.h438 char *Data = DebugInfoNames.Allocate<char>(A.size() + B.size()); local
439 std::memcpy(Data, A.data(), A.size());
440 std::memcpy(Data + A.size(), B.data(), B.size());
441 return StringRef(Data, A.size() + B.size());
/external/clang/lib/Edit/
H A DEditedSource.cpp27 SmallString<128> Data; local
28 return copyString(twine.toStringRef(Data));
/external/clang/lib/Serialization/
H A DASTReaderInternals.h56 uint64_t Data; member in struct:clang::serialization::reader::ASTDeclContextNameLookupTrait::DeclNameKey
57 DeclNameKey() : Kind((DeclarationName::NameKind)0), Data(0) { }
68 return a.Kind == b.Kind && a.Data == b.Data;
/external/clang/test/SemaCXX/
H A Dcxx1y-variable-templates_in_class.cpp114 template<typename U> static U Data; member in struct:non_const_init::pointers::C0
115 template<typename U> static CONST U Data<U*> = U(); // expected-note {{here}} member in struct:non_const_init::pointers::C0
120 const int c0_test = C0::Data<int*>;
122 template const int C0::Data<int*>; // expected-error {{undefined}} member in class:non_const_init::pointers::C0
128 template<typename U> static U Data; member in struct:non_const_init::pointers::C1a
129 template<typename U> static U* Data<U*>; // Okay, with out-of-line definition member in struct:non_const_init::pointers::C1a
131 template<typename T> T* C1a::Data<T*> = new T(); member in class:non_const_init::pointers::C1a
132 template int* C1a::Data<int*>; member in class:non_const_init::pointers::C1a
135 template<typename U> static U Data; member in struct:non_const_init::pointers::C1b
136 template<typename U> static CONST U* Data< member in struct:non_const_init::pointers::C1b
138 template<typename T> CONST T* C1b::Data<T*> = (T*)(0); member in class:non_const_init::pointers::C1b
139 template CONST int* C1b::Data<int*>; member in class:non_const_init::pointers::C1b
142 template<typename U> static int Data; member in struct:non_const_init::pointers::C2a
143 template<typename U> static U* Data<U*> = new U(); // expected-error {{non-const static data member must be initialized out of line}} member in struct:non_const_init::pointers::C2a
145 template int* C2a::Data<int*>; // expected-note {{in instantiation of static data member 'non_const_init::pointers::C2a::Data<int *>' requested here}} member in class:non_const_init::pointers::C2a
148 template<typename U> static int Data; member in struct:non_const_init::pointers::C2b
149 template<typename U> static U *const Data<U*> = (U*)(0); // expected-error {{static data member of type 'int *const'}} member in struct:non_const_init::pointers::C2b
151 template<typename U> U *const C2b::Data<U*>; member in class:non_const_init::pointers::C2b
152 template int *const C2b::Data<int*>; // expected-note {{in instantiation of static data member 'non_const_init::pointers::C2b::Data<int *>' requested here}} member in class:non_const_init::pointers::C2b
179 template<typename U> static U Data; // expected-note {{here}} member in class:in_class_template::D0
180 template<typename U> static CONST U Data<U*> = U(); member in class:in_class_template::D0
182 template CONST int D0<float>::Data<int*>; member in class:in_class_template::D0
183 template int D0<float>::Data<int>; // expected-error {{undefined}} member in class:in_class_template::D0
184 template<typename T> template<typename U> const U D0<T>::Data<U*>; member in class:in_class_template::D0
188 template<typename U> static U Data; member in class:in_class_template::D1
189 template<typename U> static U* Data<U*>; member in class:in_class_template::D1
192 template<typename U> U* D1<T>::Data<U*> = (U*)(0); member in class:in_class_template::D1
193 template int* D1<float>::Data<int*>; // expected-note {{previous}} member in class:in_class_template::D1
194 template int* D1<float>::Data<int*>; // expected-error {{duplicate explicit instantiation}} member in class:in_class_template::D1
198 template<typename U> static U Data; member in class:in_class_template::D2
199 template<typename U> static U* Data<U*>; member in class:in_class_template::D2
202 template<typename U> U* D2<float>::Data<U*> = (U*)(0) + 1; member in class:in_class_template::D2
203 template int* D2<float>::Data<int*>; // expected-note {{previous}} member in class:in_class_template::D2
204 template int* D2<float>::Data<int*>; // expected-error {{duplicate explicit instantiation}} member in class:in_class_template::D2
208 template<typename U> static CONST U Data = U(100); // expected-note {{here}} member in struct:in_class_template::D3
211 template const char D3<float>::Data<char>; // expected-error {{undefined}} member in class:in_class_template::D3
216 template<typename U> static U Data; member in class:in_class_template::bug_files::D0a
217 template<typename U> static CONST U Data<U*> = U(10); // expected-note {{previous definition is here}} member in class:in_class_template::bug_files::D0a
220 template<typename U> U D0a<float>::Data<U*> = U(100); // expected-error {{redefinition of 'Data'}} member in class:in_class_template::bug_files::D0a
230 template<typename U> static U Data; member in class:in_class_template::bug_files::D1
231 template<typename U> static CONST U Data<U*> = U(10); // expected-note {{previous definition is here}} member in class:in_class_template::bug_files::D1
234 template<typename U> U D1<float>::Data = U(10); member in class:in_class_template::bug_files::D1
236 template<typename U> U D1<float>::Data<U*> = U(100); // expected-error{{redefinition of 'Data'}} member in class:in_class_template::bug_files::D1
[all...]
H A Dreferences.cpp103 char *Data; member in class:string
/external/clang/test/SemaTemplate/
H A Dinstantiate-init.cpp81 integral_c<N> array_lengthof(T (&x)[N]) { return integral_c<N>(); } // expected-note 2{{candidate template ignored: could not match 'T [N]' against 'const Data<}}
84 struct Data { struct in namespace:PR7985
90 static const Data<T> data[];
94 const Data<T> Description<T>::data[] = {{ 1 }}; // expected-error{{cannot initialize a member subobject of type 'int *' with an rvalue of type 'int'}}
97 const Data<float*> Description<float*>::data[];
/external/compiler-rt/lib/ubsan/
H A Dubsan_handlers.cc41 static void handleTypeMismatchImpl(TypeMismatchData *Data, ValueHandle Pointer, argument
43 Location Loc = Data->Loc.acquire();
44 // Use the SourceLocation from Data to track deduplication, even if 'invalid'
49 if (Data->Loc.isInvalid()) {
58 << TypeCheckKinds[Data->TypeCheckKind] << Data->Type;
59 else if (Data->Alignment && (Pointer & (Data->Alignment - 1)))
62 << TypeCheckKinds[Data->TypeCheckKind] << (void*)Pointer
63 << Data
72 __ubsan_handle_type_mismatch(TypeMismatchData *Data, ValueHandle Pointer) argument
77 __ubsan_handle_type_mismatch_abort(TypeMismatchData *Data, ValueHandle Pointer) argument
86 handleIntegerOverflowImpl(OverflowData *Data, ValueHandle LHS, const char *Operator, T RHS, ReportOptions Opts) argument
116 handleNegateOverflowImpl(OverflowData *Data, ValueHandle OldVal, ReportOptions Opts) argument
135 __ubsan_handle_negate_overflow(OverflowData *Data, ValueHandle OldVal) argument
140 __ubsan_handle_negate_overflow_abort(OverflowData *Data, ValueHandle OldVal) argument
147 handleDivremOverflowImpl(OverflowData *Data, ValueHandle LHS, ValueHandle RHS, ReportOptions Opts) argument
165 __ubsan_handle_divrem_overflow(OverflowData *Data, ValueHandle LHS, ValueHandle RHS) argument
170 __ubsan_handle_divrem_overflow_abort(OverflowData *Data, ValueHandle LHS, ValueHandle RHS) argument
178 handleShiftOutOfBoundsImpl(ShiftOutOfBoundsData *Data, ValueHandle LHS, ValueHandle RHS, ReportOptions Opts) argument
203 __ubsan_handle_shift_out_of_bounds(ShiftOutOfBoundsData *Data, ValueHandle LHS, ValueHandle RHS) argument
209 __ubsan_handle_shift_out_of_bounds_abort( ShiftOutOfBoundsData *Data, ValueHandle LHS, ValueHandle RHS) argument
218 handleOutOfBoundsImpl(OutOfBoundsData *Data, ValueHandle Index, ReportOptions Opts) argument
231 __ubsan_handle_out_of_bounds(OutOfBoundsData *Data, ValueHandle Index) argument
236 __ubsan_handle_out_of_bounds_abort(OutOfBoundsData *Data, ValueHandle Index) argument
243 handleBuiltinUnreachableImpl(UnreachableData *Data, ReportOptions Opts) argument
249 __ubsan_handle_builtin_unreachable(UnreachableData *Data) argument
255 handleMissingReturnImpl(UnreachableData *Data, ReportOptions Opts) argument
262 __ubsan_handle_missing_return(UnreachableData *Data) argument
268 handleVLABoundNotPositive(VLABoundData *Data, ValueHandle Bound, ReportOptions Opts) argument
281 __ubsan_handle_vla_bound_not_positive(VLABoundData *Data, ValueHandle Bound) argument
286 __ubsan_handle_vla_bound_not_positive_abort(VLABoundData *Data, ValueHandle Bound) argument
293 handleFloatCastOverflow(FloatCastOverflowData *Data, ValueHandle From, ReportOptions Opts) argument
305 __ubsan_handle_float_cast_overflow(FloatCastOverflowData *Data, ValueHandle From) argument
311 __ubsan_handle_float_cast_overflow_abort(FloatCastOverflowData *Data, ValueHandle From) argument
318 handleLoadInvalidValue(InvalidValueData *Data, ValueHandle Val, ReportOptions Opts) argument
331 __ubsan_handle_load_invalid_value(InvalidValueData *Data, ValueHandle Val) argument
336 __ubsan_handle_load_invalid_value_abort(InvalidValueData *Data, ValueHandle Val) argument
343 handleFunctionTypeMismatch(FunctionTypeMismatchData *Data, ValueHandle Function, ReportOptions Opts) argument
364 __ubsan_handle_function_type_mismatch(FunctionTypeMismatchData *Data, ValueHandle Function) argument
370 __ubsan_handle_function_type_mismatch_abort( FunctionTypeMismatchData *Data, ValueHandle Function) argument
377 handleNonNullReturn(NonNullReturnData *Data, ReportOptions Opts) argument
390 __ubsan_handle_nonnull_return(NonNullReturnData *Data) argument
395 __ubsan_handle_nonnull_return_abort(NonNullReturnData *Data) argument
401 handleNonNullArg(NonNullArgData *Data, ReportOptions Opts) argument
414 __ubsan_handle_nonnull_arg(NonNullArgData *Data) argument
419 __ubsan_handle_nonnull_arg_abort(NonNullArgData *Data) argument
[all...]
/external/icu/icu4c/source/test/intltest/
H A Dcpdtrtst.cpp370 UnicodeString Data[]={ local
388 for(i=0; i<sizeof(Data)/sizeof(Data[0]); i=i+3){
391 CompoundTransliterator *ct2=new CompoundTransliterator(Data[i+0], parseError, status);
393 dataerrln("CompoundTransliterator construction failed for " + Data[i+0] + " - " + u_errorName(status));
395 expect(*ct2, Data[i+1], Data[i+2]);
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DCompactDecimalDataCache.java46 * Data contains the compact decimal data for a particular locale. Data consists
64 static class Data { class in class:CompactDecimalDataCache
68 Data(long[] divisors, Map<String, DecimalFormat.Unit[]> units) { method in class:CompactDecimalDataCache.Data
81 Data shortData;
82 Data longData;
84 DataBundle(Data shortData, Data longData) {
160 Data shortData = loadStyle(shortDataBundle, ulocale, SHORT_STYLE);
161 Data longDat
[all...]
/external/jhead/
H A Diptc.c45 // - IPTC Data which consists of a number of entries, each of which has the following format:
52 void show_IPTC (unsigned char* Data, unsigned int itemlen) argument
58 unsigned char * pos = Data + sizeof(short); // position data pointer after length field
59 unsigned char * maxpos = Data+itemlen;
98 while (pos < (Data + itemlen-5)) {
177 unsigned char * Data; local
183 Data = XmpSection.Data;
188 if (Data[a] >= 32 && Data[
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/data/
H A DData.java29 public interface Data { interface
50 * implementing a Data object that caches these values, care must be taken to ensure that a node
60 * implementing a Data object that caches these values, care must be taken to ensure that a node
116 Data getRoot();
121 Data getParent();
134 * Retrieves the node representing the next sibling of this Data node, if any.
136 * @return the next sibling Data object or {@code null} if this is the last sibling.
138 Data getNextSibling();
148 Iterable<? extends Data> getChildren();
154 Data getChil
[all...]
/external/libnfc-nci/halimpl/pn54x/dnld/
H A DphDnldNfc.c107 ** Description Retrieves Hardware version, ROM Code version, Protected Data version,
1278 static phDnldNfc_Buff_t Data; local
1312 Data.pBuff = bRdData;
1313 Data.wLen = sizeof(bRdData);
1317 wStatus = phDnldNfc_Read(&Data, wRdAddr,(pphDnldNfc_RspCb_t)phDnldNfc_ReadComplete,gpphDnldContext);
1321 Data.pBuff = NULL;
1322 Data.wLen = 0;
/external/llvm/include/llvm/ADT/
H A DArrayRef.h41 const T *Data; member in class:llvm::ArrayRef
51 /*implicit*/ ArrayRef() : Data(nullptr), Length(0) {}
54 /*implicit*/ ArrayRef(NoneType) : Data(nullptr), Length(0) {}
58 : Data(&OneElt), Length(1) {}
62 : Data(data), Length(length) {}
66 : Data(begin), Length(end - begin) {}
73 : Data(Vec.data()), Length(Vec.size()) {
79 : Data(Vec.data()), Length(Vec.size()) {}
84 : Data(Arr), Length(N) {}
88 : Data(Ve
[all...]
H A DEquivalenceClasses.h72 ElemTy Data; member in class:llvm::EquivalenceClasses::ECValue
76 : Leader(this), Next((ECValue*)(intptr_t)1), Data(Elt) {}
95 Data(RHS.Data) {
100 bool operator<(const ECValue &UFN) const { return Data < UFN.Data; }
103 const ElemTy &getData() const { return Data; }
110 bool operator<(const T &Val) const { return Data < Val; }
196 iterator insert(const ElemTy &Data) { argument
197 return TheMapping.insert(ECValue(Data))
[all...]
/external/llvm/include/llvm/Object/
H A DArchive.h57 StringRef Data; member in class:llvm::object::Archive::Child
58 /// \brief Offset from Data to the start of the file.
62 return reinterpret_cast<const ArchiveMemberHeader *>(Data.data());
70 return Data.begin() == other.Data.begin();
74 return Data.begin() < other.Data.begin();
98 return StringRef(Data.data() + StartOfFile, getSize());
H A DBinary.h37 MemoryBufferRef Data; member in class:llvm::object::Binary

Completed in 2177 milliseconds

1234567891011