/third_party/mesa3d/src/microsoft/compiler/ |
H A D | dxil_nir_algebraic.py | 57 new_seq = ('iand', a, mask) 60 new_seq = ('ishr', ('ishl', a, shift), shift) 63 new_seq = (outer_op, new_seq) 64 arr += [(orig_seq, new_seq)] 74 new_seq = ('fmin', ('fmax', a, 0.0), max_unsigned_float) 76 new_seq = ('fmin', ('fmax', a, min_signed_float), max_signed_float) 78 new_seq = ('f2f' + str(int(outer_op_sz)), new_seq) 79 arr += [(orig_seq, new_seq)] [all...] |
/third_party/python/Parser/ |
H A D | action_helpers.c | 51 asdl_seq *new_seq = (asdl_seq*)_Py_asdl_generic_seq_new(asdl_seq_LEN(seq) + 1, p->arena); in _PyPegen_seq_insert_in_front() local 52 if (!new_seq) { in _PyPegen_seq_insert_in_front() 56 asdl_seq_SET_UNTYPED(new_seq, 0, a); in _PyPegen_seq_insert_in_front() 57 for (Py_ssize_t i = 1, l = asdl_seq_LEN(new_seq); i < l; i++) { in _PyPegen_seq_insert_in_front() 58 asdl_seq_SET_UNTYPED(new_seq, i, asdl_seq_GET_UNTYPED(seq, i - 1)); in _PyPegen_seq_insert_in_front() 60 return new_seq; in _PyPegen_seq_insert_in_front() 72 asdl_seq *new_seq = (asdl_seq*)_Py_asdl_generic_seq_new(asdl_seq_LEN(seq) + 1, p->arena); in _PyPegen_seq_append_to_end() local 73 if (!new_seq) { in _PyPegen_seq_append_to_end() 77 for (Py_ssize_t i = 0, l = asdl_seq_LEN(new_seq); i + 1 < l; i++) { in _PyPegen_seq_append_to_end() 78 asdl_seq_SET_UNTYPED(new_seq, in _PyPegen_seq_append_to_end() 231 asdl_identifier_seq *new_seq = _Py_asdl_identifier_seq_new(len, p->arena); _PyPegen_map_names_to_ids() local 262 asdl_int_seq *new_seq = _Py_asdl_int_seq_new(len, p->arena); _PyPegen_get_cmpops() local 279 asdl_expr_seq *new_seq = _Py_asdl_expr_seq_new(len, p->arena); _PyPegen_get_exprs() local 299 asdl_expr_seq *new_seq = _Py_asdl_expr_seq_new(len, p->arena); _set_seq_context() local 405 asdl_expr_seq *new_seq = _Py_asdl_expr_seq_new(len, p->arena); _PyPegen_get_keys() local 421 asdl_expr_seq *new_seq = _Py_asdl_expr_seq_new(len, p->arena); _PyPegen_get_values() local 450 asdl_expr_seq *new_seq = _Py_asdl_expr_seq_new(len, p->arena); _PyPegen_get_pattern_keys() local 466 asdl_pattern_seq *new_seq = _Py_asdl_pattern_seq_new(len, p->arena); _PyPegen_get_patterns() local 522 asdl_seq *new_seq = (asdl_seq*)_Py_asdl_generic_seq_new(first_len + second_len, p->arena); _PyPegen_join_sequences() local 833 asdl_expr_seq *new_seq = _Py_asdl_expr_seq_new(new_len, p->arena); _PyPegen_seq_extract_starred_exprs() local 857 asdl_keyword_seq *new_seq = _Py_asdl_keyword_seq_new(new_len, p->arena); _PyPegen_seq_delete_starred_exprs() local [all...] |
/third_party/lwip/src/netif/ppp/ |
H A D | vj.c | 172 u8_t new_seq[16]; in vj_compress_tcp() local 173 u8_t *cp = new_seq; in vj_compress_tcp() 367 cp = new_seq; in vj_compress_tcp() 375 cp = new_seq; in vj_compress_tcp() 399 * (cp - new_seq) is the number of bytes we need for compressed in vj_compress_tcp() 402 * So, (cp - new_seq) + 4 bytes of header are needed. hlen is how in vj_compress_tcp() 406 deltaS = (u16_t)(cp - new_seq); in vj_compress_tcp() 428 MEMCPY(cp, new_seq, deltaS); in vj_compress_tcp()
|
/third_party/node/deps/v8/src/libplatform/tracing/ |
H A D | trace-buffer.cc | 90 void TraceBufferChunk::Reset(uint32_t new_seq) { in Reset() argument 92 seq_ = new_seq; in Reset()
|
/third_party/node/deps/v8/include/libplatform/ |
H A D | v8-tracing.h | 139 void Reset(uint32_t new_seq);
|
/third_party/node/deps/v8/include/v8-include/libplatform/ |
H A D | v8-tracing.h | 139 void Reset(uint32_t new_seq);
|