Home
last modified time | relevance | path

Searched refs:new_head (Results 1 – 16 of 16) sorted by relevance

/external/cronet/third_party/boringssl/
Droll_boringssl.py118 new_head = RevParse(BORINGSSL_SRC_PATH, sys.argv[1])
121 new_head = RevParse(BORINGSSL_SRC_PATH, 'origin/master')
124 if old_head == new_head:
128 print('Rolling BoringSSL from %s to %s...' % (old_head, new_head))
134 log = Log(BORINGSSL_SRC_PATH, '%s..%s' % (old_head, new_head))
153 UpdateDEPS(DEPS_PATH, old_head, new_head)
156 subprocess.check_call(['git', 'checkout', new_head], cwd=BORINGSSL_SRC_PATH)
188 """ % (old_head[:9], new_head[:9], old_head, new_head)
209 '%s..%s' % (old_head, new_head)], cwd=BORINGSSL_SRC_PATH, text=True,
/external/mesa3d/src/util/
Dsparse_array.c255 uint64_t new_head = free_list_head(current_head, items[0]); in util_sparse_array_free_list_push() local
256 old_head = p_atomic_cmpxchg(&fl->head, current_head, new_head); in util_sparse_array_free_list_push()
273 uint64_t new_head = free_list_head(current_head, p_atomic_read(head_next)); in util_sparse_array_free_list_pop_idx() local
274 uint64_t old_head = p_atomic_cmpxchg(&fl->head, current_head, new_head); in util_sparse_array_free_list_pop_idx()
294 uint64_t new_head = free_list_head(current_head, p_atomic_read(head_next)); in util_sparse_array_free_list_pop_elem() local
295 uint64_t old_head = p_atomic_cmpxchg(&fl->head, current_head, new_head); in util_sparse_array_free_list_pop_elem()
/external/rust/crates/crossbeam-deque/src/
Ddeque.rs1448 let mut new_head = head + (1 << SHIFT); in steal() localVariable
1450 if new_head & HAS_NEXT == 0 { in steal()
1461 new_head |= HAS_NEXT; in steal()
1469 .compare_exchange_weak(head, new_head, Ordering::SeqCst, Ordering::Acquire) in steal()
1479 let mut next_index = (new_head & !HAS_NEXT).wrapping_add(1 << SHIFT); in steal()
1584 let mut new_head = head; in steal_batch_with_limit() localVariable
1587 if new_head & HAS_NEXT == 0 { in steal_batch_with_limit()
1599 new_head |= HAS_NEXT; in steal_batch_with_limit()
1612 new_head += advance << SHIFT; in steal_batch_with_limit()
1619 .compare_exchange_weak(head, new_head, Ordering::SeqCst, Ordering::Acquire) in steal_batch_with_limit()
[all …]
/external/grpc-grpc/test/core/util/
Dreconnect_server.cc116 timestamp_list* new_head = server->head; in reconnect_server_clear_timestamps() local
118 new_head = server->head->next; in reconnect_server_clear_timestamps()
120 server->head = new_head; in reconnect_server_clear_timestamps()
/external/rust/crates/grpcio-sys/grpc/src/core/ext/transport/chttp2/transport/
Dstream_lists.cc58 grpc_chttp2_stream* new_head = s->links[id].next; in stream_list_pop() local
60 if (new_head) { in stream_list_pop()
61 t->lists[id].head = new_head; in stream_list_pop()
62 new_head->links[id].prev = nullptr; in stream_list_pop()
/external/grpc-grpc/src/core/ext/transport/chttp2/transport/
Dstream_lists.cc58 grpc_chttp2_stream* new_head = s->links[id].next; in stream_list_pop() local
60 if (new_head) { in stream_list_pop()
61 t->lists[id].head = new_head; in stream_list_pop()
62 new_head->links[id].prev = nullptr; in stream_list_pop()
/external/pdfium/core/fxcrt/css/
Dcfx_cssselector.cpp63 auto new_head = in FromString() local
65 head = std::move(new_head); in FromString()
/external/rust/crates/crossbeam-queue/src/
Dseg_queue.rs299 let mut new_head = head + (1 << SHIFT); in pop() localVariable
301 if new_head & HAS_NEXT == 0 { in pop()
312 new_head |= HAS_NEXT; in pop()
328 new_head, in pop()
336 let mut next_index = (new_head & !HAS_NEXT).wrapping_add(1 << SHIFT); in pop()
Darray_queue.rs235 let new_head = new_tail.wrapping_sub(self.one_lap); in force_push() localVariable
240 .compare_exchange_weak(head, new_head, Ordering::SeqCst, Ordering::Relaxed) in force_push()
/external/rust/crates/crossbeam-channel/src/flavors/
Dlist.rs317 let mut new_head = head + (1 << SHIFT); in start_recv() localVariable
319 if new_head & MARK_BIT == 0 { in start_recv()
338 new_head |= MARK_BIT; in start_recv()
354 new_head, in start_recv()
362 let mut next_index = (new_head & !MARK_BIT).wrapping_add(1 << SHIFT); in start_recv()
/external/cronet/base/allocator/partition_allocator/
Dpartition_page.h232 PA_ALWAYS_INLINE void SetFreelistHead(PartitionFreelistEntry* new_head);
722 PartitionFreelistEntry* new_head) { in SetFreelistHead() argument
726 uintptr_t new_head_untagged = UntagPtr(new_head); in SetFreelistHead()
727 PA_DCHECK(!new_head || in SetFreelistHead()
731 freelist_head = new_head; in SetFreelistHead()
/external/libchrome/libchrome_tools/uprev/
Dgenerate_filtered_tree.py233 new_head = process_commits(
253 print('New HEAD should be', new_head.decode('ascii'))
/external/python/cpython2/Lib/test/
Dtest_marshal.py261 new_head = marshal.loads(data)
263 self.assertEqual(len(new_head), len(head))
264 self.assertEqual(len(new_head[0]), len(head[0]))
265 self.assertEqual(len(new_head[-1]), len(head[-1]))
/external/python/cpython3/Lib/test/
Dtest_marshal.py244 new_head = marshal.loads(data)
246 self.assertEqual(len(new_head), len(head))
247 self.assertEqual(len(new_head[0]), len(head[0]))
248 self.assertEqual(len(new_head[-1]), len(head[-1]))
/external/crosvm/io_uring/src/
During.rs970 let new_head = head.wrapping_add(1); in pop_front() localVariable
971 self.pointers.set_head(new_head); in pop_front()
/external/tensorflow/tensorflow/python/ops/ragged/
Ddynamic_ragged_shape.py51new_head = _batch_rp_spec_head(spec._row_partitions[0], batch_size) # pylint:disable=protected-ac…
53 new_rp = [new_head] + new_tail
68new_head = RowPartitionSpec(uniform_row_length=spec._dimension(0), # pylint:disable=protected-acc…
73 row_partitions=[new_head],