Home
last modified time | relevance | path

Searched refs:opl (Results 1 - 9 of 9) sorted by relevance

/third_party/node/deps/ngtcp2/nghttp3/lib/
H A Dnghttp3_opl.c28 void nghttp3_opl_init(nghttp3_opl *opl) { opl->head = NULL; } in nghttp3_opl_init() argument
30 void nghttp3_opl_push(nghttp3_opl *opl, nghttp3_opl_entry *ent) { in nghttp3_opl_push() argument
31 ent->next = opl->head; in nghttp3_opl_push()
32 opl->head = ent; in nghttp3_opl_push()
35 nghttp3_opl_entry *nghttp3_opl_pop(nghttp3_opl *opl) { in nghttp3_opl_pop() argument
36 nghttp3_opl_entry *ent = opl->head; in nghttp3_opl_pop()
42 opl->head = ent->next; in nghttp3_opl_pop()
47 void nghttp3_opl_clear(nghttp3_opl *opl) { opl argument
[all...]
H A Dnghttp3_opl.h49 * nghttp3_opl_init initializes |opl|.
51 void nghttp3_opl_init(nghttp3_opl *opl);
54 * nghttp3_opl_push inserts |ent| to |opl| head.
56 void nghttp3_opl_push(nghttp3_opl *opl, nghttp3_opl_entry *ent);
59 * nghttp3_opl_pop removes the first nghttp3_opl_entry from |opl| and
60 * returns it. If |opl| does not have any entry, it returns NULL.
62 nghttp3_opl_entry *nghttp3_opl_pop(nghttp3_opl *opl);
64 void nghttp3_opl_clear(nghttp3_opl *opl);
H A Dnghttp3_objalloc.h47 nghttp3_opl opl; member
78 nghttp3_opl_entry *oplent = nghttp3_opl_pop(&objalloc->opl); \
97 nghttp3_opl_entry *oplent = nghttp3_opl_pop(&objalloc->opl); \
115 nghttp3_opl_push(&objalloc->opl, &obj->OPLENTFIELD); \
H A Dnghttp3_objalloc.c31 nghttp3_opl_init(&objalloc->opl); in nghttp3_objalloc_init()
39 nghttp3_opl_clear(&objalloc->opl); in nghttp3_objalloc_clear()
/third_party/node/deps/ngtcp2/ngtcp2/lib/
H A Dngtcp2_opl.c27 void ngtcp2_opl_init(ngtcp2_opl *opl) { opl->head = NULL; } in ngtcp2_opl_init() argument
29 void ngtcp2_opl_push(ngtcp2_opl *opl, ngtcp2_opl_entry *ent) { in ngtcp2_opl_push() argument
30 ent->next = opl->head; in ngtcp2_opl_push()
31 opl->head = ent; in ngtcp2_opl_push()
34 ngtcp2_opl_entry *ngtcp2_opl_pop(ngtcp2_opl *opl) { in ngtcp2_opl_pop() argument
35 ngtcp2_opl_entry *ent = opl->head; in ngtcp2_opl_pop()
41 opl->head = ent->next; in ngtcp2_opl_pop()
46 void ngtcp2_opl_clear(ngtcp2_opl *opl) { opl argument
[all...]
H A Dngtcp2_opl.h48 * ngtcp2_opl_init initializes |opl|.
50 void ngtcp2_opl_init(ngtcp2_opl *opl);
53 * ngtcp2_opl_push inserts |ent| to |opl| head.
55 void ngtcp2_opl_push(ngtcp2_opl *opl, ngtcp2_opl_entry *ent);
58 * ngtcp2_opl_pop removes the first ngtcp2_opl_entry from |opl| and
59 * returns it. If |opl| does not have any entry, it returns NULL.
61 ngtcp2_opl_entry *ngtcp2_opl_pop(ngtcp2_opl *opl);
63 void ngtcp2_opl_clear(ngtcp2_opl *opl);
H A Dngtcp2_objalloc.h46 ngtcp2_opl opl; member
77 ngtcp2_opl_entry *oplent = ngtcp2_opl_pop(&objalloc->opl); \
96 ngtcp2_opl_entry *oplent = ngtcp2_opl_pop(&objalloc->opl); \
114 ngtcp2_opl_push(&objalloc->opl, &obj->OPLENTFIELD); \
H A Dngtcp2_objalloc.c30 ngtcp2_opl_init(&objalloc->opl); in ngtcp2_objalloc_init()
38 ngtcp2_opl_clear(&objalloc->opl); in ngtcp2_objalloc_clear()
/third_party/node/deps/v8/src/wasm/baseline/x64/
H A Dliftoff-assembler-x64.h653 void (Assembler::*opl)(Register, Register), in AtomicBinop()
675 (lasm->*opl)(kScratchRegister, value_reg); in AtomicBinop()
688 (lasm->*opl)(kScratchRegister, value_reg); in AtomicBinop()
700 (lasm->*opl)(kScratchRegister, value_reg); in AtomicBinop()

Completed in 10 milliseconds