Searched refs:prev_c (Results 1 – 7 of 7) sorted by relevance
/external/trusty/musl/src/regex/ |
D | regexec.c | 54 prev_c = next_c; pos += pos_add_next; \ 67 && (prev_c != L'\n' || !reg_newline)) \ 72 && (IS_WORD_CHAR(prev_c) || !IS_WORD_CHAR(next_c))) \ 74 && (!IS_WORD_CHAR(prev_c) || IS_WORD_CHAR(next_c))) \ 77 && IS_WORD_CHAR(prev_c) == IS_WORD_CHAR(next_c))) \ 80 || IS_WORD_CHAR(prev_c) != IS_WORD_CHAR(next_c)))) 85 && !tre_isctype((tre_cint_t)prev_c, trans_i->u.class)) \ 88 && !tre_isctype(tre_tolower((tre_cint_t)prev_c),trans_i->u.class) \ 89 && !tre_isctype(tre_toupper((tre_cint_t)prev_c),trans_i->u.class)) \ 91 && tre_neg_char_classes_match(trans_i->neg_classes,(tre_cint_t)prev_c,\ [all …]
|
/external/musl/src/regex/ |
D | regexec.c | 54 prev_c = next_c; pos += pos_add_next; \ 67 && (prev_c != L'\n' || !reg_newline)) \ 72 && (IS_WORD_CHAR(prev_c) || !IS_WORD_CHAR(next_c))) \ 74 && (!IS_WORD_CHAR(prev_c) || IS_WORD_CHAR(next_c))) \ 77 && IS_WORD_CHAR(prev_c) == IS_WORD_CHAR(next_c))) \ 80 || IS_WORD_CHAR(prev_c) != IS_WORD_CHAR(next_c)))) 85 && !tre_isctype((tre_cint_t)prev_c, trans_i->u.class)) \ 88 && !tre_isctype(tre_tolower((tre_cint_t)prev_c),trans_i->u.class) \ 89 && !tre_isctype(tre_toupper((tre_cint_t)prev_c),trans_i->u.class)) \ 91 && tre_neg_char_classes_match(trans_i->neg_classes,(tre_cint_t)prev_c,\ [all …]
|
/external/pcre/src/ |
D | pcre2_convert.c | 593 uint32_t c, prev_c; in convert_glob_parse_range() local 637 prev_c = 0; in convert_glob_parse_range() 645 prev_c = CHAR_RIGHT_SQUARE_BRACKET; in convert_glob_parse_range() 686 prev_c = 0; in convert_glob_parse_range() 715 if (prev_c > c) in convert_glob_parse_range() 721 if (prev_c < separator && separator < c) separator_seen = TRUE; in convert_glob_parse_range() 724 prev_c = 0; in convert_glob_parse_range() 737 prev_c = c; in convert_glob_parse_range()
|
/external/pytorch/torch/utils/hipify/ |
D | hipify_python.py | 359 prev_c = '' 364 if c == '/' and prev_c == '/': 366 elif c == '*' and prev_c == '/': 368 elif c == '"' and prev_c != '\\' and prev_c != "'": 376 if c == '/' and prev_c == '*': 380 if c == '"' and prev_c != '\\': 382 prev_c = c
|
/external/eigen/Eigen/src/OrderingMethods/ |
D | Eigen_Colamd.h | 1586 IndexType prev_c ; /* column preceding c in hash bucket */ in detect_super_cols() local 1631 prev_c = super_c ; in detect_super_cols() 1646 prev_c = c ; in detect_super_cols() 1670 prev_c = c ; in detect_super_cols() 1684 Col [prev_c].shared4.hash_next = Col [c].shared4.hash_next ; in detect_super_cols()
|
/external/tensorflow/tensorflow/python/grappler/ |
D | auto_mixed_precision_test.py | 162 def _lstm_cell(prev_c, prev_h, x): argument 178 next_c = f * prev_c + i * c
|
/external/pytorch/test/inductor/ |
D | test_triton_kernels.py | 680 prev_c = CONSTANT_C 683 assert CONSTANT_C != prev_c 692 CONSTANT_C = prev_c
|