Home
last modified time | relevance | path

Searched refs:data_type (Results 1 – 25 of 125) sorted by relevance

12345

/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DProgramStateTrait.h60 typedef llvm::ImmutableMap<Key,Data,Info> data_type;
61 typedef typename data_type::Factory& context_type;
66 static inline data_type MakeData(void *const* p) {
67 return p ? data_type((typename data_type::TreeTy*) *p)
68 : data_type(nullptr);
70 static inline void *MakeVoidPtr(data_type B) {
73 static lookup_type Lookup(data_type B, key_type K) {
76 static data_type Set(data_type B, key_type K, value_type E,context_type F){
80 static data_type Remove(data_type B, key_type K, context_type F) {
85 return *((typename data_type::Factory*) p);
[all …]
DProgramState.h55 typedef typename T::data_type data_type; typedef
56 static inline void *MakeVoidPtr(data_type D) { return (void*) D; } in MakeVoidPtr()
57 static inline data_type MakeData(void *const* P) { in MakeData()
58 return P ? (data_type) *P : (data_type) 0; in MakeData()
372 typename ProgramStateTrait<T>::data_type
398 ProgramStateRef set(typename ProgramStateTrait<T>::data_type D) const;
573 ProgramStateRef set(ProgramStateRef st, typename ProgramStateTrait<T>::data_type D) { in set()
791 ProgramStateRef ProgramState::set(typename ProgramStateTrait<T>::data_type D) const { in set()
/external/webrtc/webrtc/system_wrappers/source/spreadsortlib/
Dspreadsort.hpp128 template <class RandomAccessIter, class div_type, class data_type>
169 data_type tmp; in spread_sort_rec()
203 …spread_sort_rec<RandomAccessIter, div_type, data_type>(lastPos, bin_cache[u], bin_cache, cache_end… in spread_sort_rec()
208 template <class RandomAccessIter, class div_type, class data_type, class right_shift>
216 data_type tmp; in inner_swap_loop()
236 template <class RandomAccessIter, class div_type, class data_type, class right_shift>
241 …inner_swap_loop<RandomAccessIter, div_type, data_type, right_shift>(bins, nextbinstart, ii, shift,… in swap_loop()
245 …template <class RandomAccessIter, class div_type, class data_type, class right_shift, class compar…
271 …swap_loop<RandomAccessIter, div_type, data_type, right_shift>(bins, nextbinstart, u, shift, bin_si… in spread_sort_rec()
288 …spread_sort_rec<RandomAccessIter, div_type, data_type, right_shift, compare>(lastPos, bin_cache[u]… in spread_sort_rec()
[all …]
/external/clang/lib/Serialization/
DASTReaderInternals.h50 typedef llvm::SmallVector<DeclID, 4> data_type; typedef
52 data_type &Data;
55 data_type_builder(data_type &D) : Data(D) {} in data_type_builder()
104 static void MergeDataInto(const data_type &From, data_type_builder &To) { in MergeDataInto()
175 typedef IdentifierInfo * data_type; typedef
181 data_type ReadData(const internal_key_type& k,
202 struct data_type { struct
234 data_type ReadData(Selector, const unsigned char* d, unsigned DataLen);
267 typedef HeaderFileInfo data_type; typedef
284 data_type ReadData(internal_key_ref,const unsigned char *d, unsigned DataLen);
DMultiOnDiskHashTable.h40 typedef typename Info::data_type data_type; typedef
61 llvm::DenseMap<internal_key_type, data_type> Data;
212 data_type find(const external_key_type &EKey) { in find()
213 data_type Result; in find()
245 data_type findAll() { in findAll()
246 data_type Result; in findAll()
/external/chromium-trace/catapult/dependency_manager/dependency_manager/
Dbase_config.py294 dependency, platform, data_type='version_in_cs')
302 def _SetPlatformData(self, dependency, platform, data_type, data): argument
309 if (data_type == 'cloud_storage_bucket' or
310 data_type == 'cloud_storage_base_folder'):
311 self._config_data[dependency][data_type] = data
313 self._config_data[dependency]['file_info'][platform][data_type] = data
315 def _GetPlatformData(self, dependency, platform, data_type=None): argument
323 if data_type:
324 if (data_type == 'cloud_storage_bucket' or
325 data_type == 'cloud_storage_base_folder'):
[all …]
/external/llvm/utils/
DlldbDataFormatters.py48 offset, self.data_type)
59 self.data_type = the_type.GetTemplateArgumentType(0)
60 self.type_size = self.data_type.GetByteSize()
83 offset, self.data_type)
89 self.data_type = self.data.GetType().GetPointeeType()
90 self.type_size = self.data_type.GetByteSize()
/external/autotest/client/common_lib/cros/bluetooth/
Dbluetooth_sdp_socket.py396 data_type = header >> 3
400 if data_type == 0:
404 elif data_type <= 3 or data_type == 5:
406 data_type == 3 and (data_size == 0 or data_size == 3) or
407 data_type == 5 and data_size != 0):
414 if data_type == 2 and (ord(data[0]) & 128) != 0:
418 if data_type == 5:
423 elif data_type == 4 or data_type == 8:
433 elif data_type == 6 or data_type == 7:
/external/autotest/server/site_tests/enterprise_CFM_Perf/
Denterprise_CFM_Perf.py175 def _get_average(self, data_type, jmidata): argument
182 data = self._get_data_from_jmifile(data_type, jmidata)
188 def _get_std_dev(self, data_type, jmidata): argument
195 data = self._get_data_from_jmifile(data_type, jmidata)
204 def _get_max_value(self, data_type, jmidata): argument
211 data = self._get_data_from_jmifile(data_type, jmidata)
217 def _get_sum(self, data_type, jmidata): argument
224 data = self._get_data_from_jmifile(data_type, jmidata)
230 def _get_last_value(self, data_type, jmidata): argument
237 data = self._get_data_from_jmifile(data_type, jmidata)
[all …]
/external/swiftshader/third_party/LLVM/include/llvm/ADT/
DImmutableIntervalMap.h39 typedef const T data_type; typedef
93 typedef typename ImutInfo::data_type data_type; typedef
202 typedef typename ImutIntervalInfo<ValT>::data_type data_type; typedef
222 TreeTy *T = F.add(Old.Root, std::pair<key_type, data_type>(K, D)); in add()
231 data_type *lookup(ImmutableIntervalMap M, key_type_ref K) { in lookup()
243 data_type* lookup(key_type_ref K) const;
DImmutableMap.h30 typedef const S data_type; typedef
67 typedef typename ValInfo::data_type data_type; typedef
111 TreeTy *T = F.add(Old.Root, std::pair<key_type,data_type>(K,D)); in add()
232 data_type* lookup(key_type_ref K) const { in lookup()
272 typedef typename ValInfo::data_type data_type; typedef
322 TreeTy *NewT = Factory->add(Root, std::pair<key_type, data_type>(K, D)); in add()
385 data_type* lookup(key_type_ref K) const { in lookup()
/external/llvm/include/llvm/ADT/
DImmutableMap.h30 typedef const S data_type; typedef
66 typedef typename ValInfo::data_type data_type; typedef
112 TreeTy *T = F.add(Old.Root, std::pair<key_type,data_type>(K,D)); in add()
218 data_type* lookup(key_type_ref K) const { in lookup()
258 typedef typename ValInfo::data_type data_type; typedef
324 TreeTy *NewT = Factory->add(Root, std::pair<key_type, data_type>(K, D)); in add()
377 data_type *lookup(key_type_ref K) const { in lookup()
/external/webrtc/webrtc/system_wrappers/source/
Dsort.cc188 DataType* data_type = static_cast<DataType*>(data);
189 boost::integer_sort(data_type, data_type + num_of_elements);
194 DataType* data_type = static_cast<DataType*>(data);
196 boost::float_sort_cast(data_type, data_type + num_of_elements, c_val);
201 DataType* data_type = static_cast<DataType*>(data);
202 std::sort(data_type, data_type + num_of_elements);
/external/autotest/server/cros/
Dcfm_jmidata_log_collector.py10 def GetDataFromLogs(testcase, data_type, log_lines): argument
57 data_array = data_type_to_func_map[data_type]()
58 logging.info('Data Type: %s, Data Array: %s', data_type, str(data_array))
/external/libmojo/mojo/public/tools/bindings/generators/cpp_templates/
Dunion_serialization_declaration.tmpl2 {%- set data_type = union|get_qualified_name_for_kind(internal=True) %}
17 {{data_type}}** output,
21 static bool Deserialize({{data_type}}* input,
Dunion_serialization_definition.tmpl2 {%- set data_type = union|get_qualified_name_for_kind(internal=True) %}
11 size_t size = inlined ? 0 : sizeof({{data_type}});
42 {{data_type}}** output,
45 {{data_type}}* result = *output;
48 result = {{data_type}}::New(buf);
116 {{data_type}}* input,
Dstruct_serialization_declaration.tmpl3 {%- set data_type = struct|get_qualified_name_for_kind(internal=True) %}
52 {{data_type}}** output,
70 static bool Deserialize({{data_type}}* input,
/external/parameter-framework/asio-1.10.6/include/asio/ip/
Dbasic_endpoint.hpp46 typedef asio::detail::socket_addr_type data_type; typedef in asio::ip::basic_endpoint
119 data_type* data() in data()
125 const data_type* data() const in data()
/external/autotest/scheduler/
Dscheduler_config.py35 for field, data_type in self.FIELDS:
38 type=data_type))
/external/mesa3d/src/glx/
Dindirect_vertex_array.c216 arrays->arrays[0].data_type = GL_FLOAT; in __glXInitVertexArrayState()
222 arrays->arrays[1].data_type = GL_FLOAT; in __glXInitVertexArrayState()
228 arrays->arrays[2].data_type = GL_FLOAT; in __glXInitVertexArrayState()
233 arrays->arrays[3].data_type = GL_UNSIGNED_BYTE; in __glXInitVertexArrayState()
239 arrays->arrays[4 + i].data_type = GL_FLOAT; in __glXInitVertexArrayState()
250 arrays->arrays[i].data_type = GL_FLOAT; in __glXInitVertexArrayState()
258 arrays->arrays[i].data_type = GL_FLOAT; in __glXInitVertexArrayState()
271 arrays->arrays[idx + i].data_type = GL_FLOAT; in __glXInitVertexArrayState()
286 arrays->arrays[i].data_type = GL_FLOAT; in __glXInitVertexArrayState()
363 if (arrays->arrays[i].data_type == GL_DOUBLE) { in emit_element_none()
[all …]
Dindirect_vertex_array_priv.h55 GLenum data_type; member
137 GLenum data_type; member
/external/python/cpython2/Lib/test/
Dtest__locale.py61 def numeric_tester(self, calc_type, calc_value, data_type, used_locale): argument
68 ('', ''))[data_type == 'thousands_sep']
73 calc_type, data_type, set_locale,
/external/llvm/include/llvm/Support/
DOnDiskHashTable.h65 typename Info::data_type Data;
285 typedef typename Info::data_type data_type; typedef
333 data_type operator*() const { return InfoObj->ReadData(Key, Data, Len); }
438 typedef typename base_type::data_type data_type; typedef
551 typedef data_type value_type;
/external/mesa3d/src/mesa/drivers/dri/r200/
Dradeon_screen.c213 image->data_type = GL_UNSIGNED_BYTE; in radeon_create_image_from_name()
218 image->data_type = GL_UNSIGNED_BYTE; in radeon_create_image_from_name()
223 image->data_type = GL_UNSIGNED_BYTE; in radeon_create_image_from_name()
275 image->data_type = GL_UNSIGNED_BYTE; in radeon_create_image_from_renderbuffer()
313 image->data_type = GL_UNSIGNED_BYTE; in radeon_create_image()
318 image->data_type = GL_UNSIGNED_BYTE; in radeon_create_image()
323 image->data_type = GL_UNSIGNED_BYTE; in radeon_create_image()
/external/mesa3d/src/mesa/drivers/dri/radeon/
Dradeon_screen.c213 image->data_type = GL_UNSIGNED_BYTE; in radeon_create_image_from_name()
218 image->data_type = GL_UNSIGNED_BYTE; in radeon_create_image_from_name()
223 image->data_type = GL_UNSIGNED_BYTE; in radeon_create_image_from_name()
275 image->data_type = GL_UNSIGNED_BYTE; in radeon_create_image_from_renderbuffer()
313 image->data_type = GL_UNSIGNED_BYTE; in radeon_create_image()
318 image->data_type = GL_UNSIGNED_BYTE; in radeon_create_image()
323 image->data_type = GL_UNSIGNED_BYTE; in radeon_create_image()

12345