/external/mesa3d/src/compiler/nir/ |
nir_opt_dce.c | 40 worklist_elem *elem = ralloc(worklist, worklist_elem); local 41 elem->instr = instr; 43 exec_list_push_tail(worklist, &elem->node); 50 worklist_elem *elem = exec_node_data(worklist_elem, node, node); local 51 return elem->instr;
|
/external/mesa3d/src/egl/main/ |
eglarray.c | 106 _eglAppendArray(_EGLArray *array, void *elem) 111 array->Elements[array->Size++] = elem; 135 _eglFindArray(_EGLArray *array, void *elem) 143 if (array->Elements[i] == elem) 144 return elem;
|
/external/mesa3d/src/vulkan/wsi/ |
wsi_common_queue.h | 92 uint32_t *elem; local 99 elem = u_vector_add(&queue->vector); 100 *elem = index; 145 uint32_t *elem = u_vector_remove(&queue->vector); local 146 *index = *elem;
|
/external/perfetto/src/traced/probes/filesystem/ |
prefix_finder.cc | 78 std::pair<std::string, size_t>& elem = state_[i]; local 79 if (elem.first == token) { 80 elem.second++; 85 elem.first = token; 86 elem.second = 1;
|
/external/skia/include/private/ |
SkTSearch.h | 53 const T* elem = (const T*)((const char*)base + mid * elemSize); local 55 if (less(*elem, key)) 61 const T* elem = (const T*)((const char*)base + hi * elemSize); local 62 if (less(*elem, key)) { 65 } else if (less(key, *elem)) {
|
/external/skqp/include/private/ |
SkTSearch.h | 53 const T* elem = (const T*)((const char*)base + mid * elemSize); local 55 if (less(*elem, key)) 61 const T* elem = (const T*)((const char*)base + hi * elemSize); local 62 if (less(*elem, key)) { 65 } else if (less(key, *elem)) {
|
/art/tools/ahat/src/main/com/android/ahat/ |
HeapTable.java | 83 for (T elem : selector.selected()) { 84 T base = elem.getBaseline(); 89 long size = config.getSize(elem, heap); 93 vals.add(DocString.size(size, elem.isPlaceHolder())); 94 vals.add(DocString.delta(elem.isPlaceHolder(), base.isPlaceHolder(), size, basesize)); 96 vals.add(DocString.size(total, elem.isPlaceHolder())); 97 vals.add(DocString.delta(elem.isPlaceHolder(), base.isPlaceHolder(), total, basetotal)); 100 vals.add(value.render(elem)); 115 for (T elem : remaining) { 117 long size = config.getSize(elem, heap) [all...] |
/external/grpc-grpc/src/core/lib/channel/ |
channel_stack.cc | 205 grpc_call_element* elem, grpc_polling_entity* pollent) {} 222 void grpc_call_next_op(grpc_call_element* elem, 224 grpc_call_element* next_elem = elem + 1; 229 void grpc_channel_next_get_info(grpc_channel_element* elem, 231 grpc_channel_element* next_elem = elem + 1; 235 void grpc_channel_next_op(grpc_channel_element* elem, grpc_transport_op* op) { 236 grpc_channel_element* next_elem = elem + 1; 241 grpc_channel_element* elem) { 243 reinterpret_cast<char*>(elem) - 247 grpc_call_stack* grpc_call_stack_from_top_element(grpc_call_element* elem) { [all...] |
/external/grpc-grpc/src/cpp/ext/filters/census/ |
server_filter.cc | 66 grpc_call_element* elem = reinterpret_cast<grpc_call_element*>(user_data); local 68 reinterpret_cast<CensusServerCallData*>(elem->call_data); 70 reinterpret_cast<CensusChannelData*>(elem->channel_data); 82 grpc_call_element* elem = reinterpret_cast<grpc_call_element*>(user_data); local 84 reinterpret_cast<CensusServerCallData*>(elem->call_data); 129 grpc_call_element* elem, TransportStreamOpBatch* op) { 162 grpc_call_next_op(elem, op->op()); 165 grpc_error* CensusServerCallData::Init(grpc_call_element* elem, 171 OnDoneRecvInitialMetadataCb, elem, 173 GRPC_CLOSURE_INIT(&on_done_recv_message_, OnDoneRecvMessageCb, elem, [all...] |
/external/clang/test/SemaCXX/ |
discrim-union.cpp | 42 void destroy(unsigned elem) { 43 if (elem) 44 rest.destroy(elem - 1); 68 unsigned elem; member in class:either 75 elem(impl_t::index(detail::type<U>())), 80 //~either() { impl.destroy(elem); } 82 constexpr unsigned index() noexcept { return elem; } 91 return (elem != N ? throw_<const_get_result<N>>("bad_either_get")
|
/external/skia/src/core/ |
SkTMultiMap.h | 191 void internalRemove(ValueList* prev, ValueList* elem, const Key& key) { 192 if (elem->fNext) { 193 ValueList* next = elem->fNext; 194 elem->fValue = next->fValue; 195 elem->fNext = next->fNext; 199 delete elem; 202 delete elem;
|
/external/skqp/src/core/ |
SkTMultiMap.h | 191 void internalRemove(ValueList* prev, ValueList* elem, const Key& key) { 192 if (elem->fNext) { 193 ValueList* next = elem->fNext; 194 elem->fValue = next->fValue; 195 elem->fNext = next->fNext; 199 delete elem; 202 delete elem;
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/xml/etree/ |
ElementTree.py | 107 for elem in element:
108 if elem.tag == tag:
109 return elem
112 elem = self.find(element, tag)
113 if elem is None:
115 return elem.text or ""
118 for elem in element.iter(tag[3:]):
119 yield elem
120 for elem in element:
121 if elem.tag == tag: [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/xml/etree/ |
ElementTree.py | 107 for elem in element:
108 if elem.tag == tag:
109 return elem
112 elem = self.find(element, tag)
113 if elem is None:
115 return elem.text or ""
118 for elem in element.iter(tag[3:]):
119 yield elem
120 for elem in element:
121 if elem.tag == tag: [all...] |
/external/python/cpython2/Lib/xml/etree/ |
ElementTree.py | 107 for elem in element: 108 if elem.tag == tag: 109 return elem 112 elem = self.find(element, tag) 113 if elem is None: 115 return elem.text or "" 118 for elem in element.iter(tag[3:]): 119 yield elem 120 for elem in element: 121 if elem.tag == tag [all...] |
/external/python/cpython2/Lib/test/ |
test_minidom.py | 77 elem = root.childNodes[0] 79 root.insertBefore(nelem, elem) 84 and root.childNodes[1] is elem 85 and root.childNodes.item(1) is elem 87 and root.lastChild is elem 94 and root.childNodes[1] is elem 95 and root.childNodes.item(1) is elem 99 and nelem.previousSibling is elem 174 elem = dom.createElement('element') 178 dom.appendChild(elem) [all...] |
/external/python/cpython3/Lib/test/ |
test_minidom.py | 86 elem = root.childNodes[0] 88 root.insertBefore(nelem, elem) 93 and root.childNodes[1] is elem 94 and root.childNodes.item(1) is elem 96 and root.lastChild is elem 103 and root.childNodes[1] is elem 104 and root.childNodes.item(1) is elem 108 and nelem.previousSibling is elem 183 elem = dom.createElement('element') 187 dom.appendChild(elem) [all...] |
/external/compiler-rt/lib/tsan/rtl/ |
tsan_clock.cc | 120 if (src->elem(tid_).reused == reused_) { 125 u64 epoch = src->elem(tid).epoch; 144 u64 epoch = src->elem(i).epoch; 153 src->elem(tid_).reused = reused_; 179 // only dst->elem(tid_). 180 if (dst->elem(tid_).epoch > last_acquire_) { 196 ClockElem &ce = dst->elem(i); 204 dst->elem(i).reused = 0; 212 dst->elem(tid_).reused = reused_; 226 dst->elem(tid_).epoch > last_acquire_) 407 ClockElem &SyncClock::elem(unsigned tid) const { function in class:__tsan::SyncClock [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
test_minidom.py | 70 elem = root.childNodes[0]
72 root.insertBefore(nelem, elem)
77 and root.childNodes[1] is elem
78 and root.childNodes.item(1) is elem
80 and root.lastChild is elem
87 and root.childNodes[1] is elem
88 and root.childNodes.item(1) is elem
92 and nelem.previousSibling is elem
167 elem = dom.createElement('element')
171 dom.appendChild(elem)
[all...] |
/external/tensorflow/tensorflow/core/kernels/data/ |
multi_device_iterator_ops.cc | 175 HostBufferElement elem; local 177 elem.status = errors::InvalidArgument("Invalid incarnation id"); 178 callback(elem); 186 elem.status = errors::Cancelled("Cancelled Multidevice iterator"); 187 callback(elem); 195 std::swap(elem, buffer_[shard_num].data.front()); 204 elem.end_of_sequence = true; 213 callback(elem); 241 HostBufferElement elem; local 243 elem.end_of_sequence = true 272 HostBufferElement elem; local [all...] |
/external/python/cpython3/Lib/collections/ |
__init__.py | 489 for elem in iterable: 490 mapping[elem] = mapping_get(elem, 0) + 1 515 >>> for elem in 'shazam': # update counts from an iterable 516 ... c[elem] += 1 # by adding 1 to each element's count 648 for elem, count in iterable.items(): 649 self[elem] = count + self_get(elem, 0) 683 for elem, count in iterable.items(): 684 self[elem] = self_get(elem, 0) - coun [all...] |
/external/grpc-grpc/test/core/end2end/tests/ |
filter_causes_close.cc | 199 grpc_call_element* elem = static_cast<grpc_call_element*>(arg); local 200 call_data* calld = static_cast<call_data*>(elem->call_data); 210 grpc_call_element* elem, grpc_transport_stream_op_batch* op) { 211 call_data* calld = static_cast<call_data*>(elem->call_data); 216 GRPC_CLOSURE_CREATE(recv_im_ready, elem, grpc_schedule_on_exec_ctx); 218 grpc_call_next_op(elem, op); 221 static grpc_error* init_call_elem(grpc_call_element* elem, 226 static void destroy_call_elem(grpc_call_element* elem, 230 static grpc_error* init_channel_elem(grpc_channel_element* elem, 235 static void destroy_channel_elem(grpc_channel_element* elem) {} [all...] |
/external/tensorflow/tensorflow/python/ops/ |
map_fn.py | 205 ops.convert_to_tensor(elem, name="elem") for elem in elems_flat] 207 dtype = dtype or input_pack([elem.dtype for elem in elems_flat]) 224 tensor_array_ops.TensorArray(dtype=elem.dtype, 228 for elem in elems_flat] 231 elem_ta.unstack(elem) for elem_ta, elem in zip(elems_ta, elems_flat)] 273 for elem in elems_flat[1:] [all...] |
/external/adhd/cras/src/server/ |
cras_alsa_jack.c | 64 * 0 -> Alsa 'jack' (union field: elem) 65 * elem - alsa hcontrol element for this jack, when is_gpio == 0. 86 * 0 -> 'elem' valid 89 snd_hctl_elem_t *elem; member in union:cras_alsa_jack::__anon15156 212 if (!jack->is_gpio && jack->elem) 213 snd_hctl_elem_set_callback(jack->elem, NULL); 229 snd_hctl_elem_read(jack->elem, elem_value); 801 * elem - The ALSA control element that has changed. 804 static int hctl_jack_cb(snd_hctl_elem_t *elem, unsigned int mask) 810 jack = snd_hctl_elem_get_callback_private(elem); 885 snd_hctl_elem_t *elem; local 1013 snd_hctl_elem_t *elem; local [all...] |
/external/mdnsresponder/mDNSShared/ |
dnsextd_parser.y | 330 StringListElem * elem; 332 elem = ( StringListElem* ) malloc( sizeof( StringListElem ) ); 334 if ( !elem ) 340 elem->string = $2; 342 elem->next = g_stringList; 343 g_stringList = elem; 453 StringListElem * elem; 474 for ( elem = zoneSpec->allowUpdate; elem; elem = elem->next [all...] |