Searched refs:next_c (Results 1 – 6 of 6) sorted by relevance
/third_party/musl/porting/liteos_m/kernel/src/regex/ |
D | regexec.c | 54 prev_c = next_c; pos += pos_add_next; \ 55 if ((pos_add_next = mbtowc(&next_c, str_byte, MB_LEN_MAX)) <= 0) { \ 69 && (next_c != L'\0' || reg_noteol) \ 70 && (next_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))) \ 76 && (pos != 0 && next_c != L'\0' \ 77 && IS_WORD_CHAR(prev_c) == IS_WORD_CHAR(next_c))) \ 79 && (pos == 0 || next_c == L'\0' \ 80 || IS_WORD_CHAR(prev_c) != IS_WORD_CHAR(next_c)))) [all …]
|
/third_party/musl/porting/liteos_m_iccarm/kernel/src/regex/ |
D | regexec.c | 54 prev_c = next_c; pos += pos_add_next; \ 55 if ((pos_add_next = mbtowc(&next_c, str_byte, MB_LEN_MAX)) <= 0) { \ 69 && (next_c != L'\0' || reg_noteol) \ 70 && (next_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))) \ 76 && (pos != 0 && next_c != L'\0' \ 77 && IS_WORD_CHAR(prev_c) == IS_WORD_CHAR(next_c))) \ 79 && (pos == 0 || next_c == L'\0' \ 80 || IS_WORD_CHAR(prev_c) != IS_WORD_CHAR(next_c)))) [all …]
|
/third_party/musl/src/regex/ |
D | regexec.c | 54 prev_c = next_c; pos += pos_add_next; \ 55 if ((pos_add_next = mbtowc(&next_c, str_byte, MB_LEN_MAX)) <= 0) { \ 69 && (next_c != L'\0' || reg_noteol) \ 70 && (next_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))) \ 76 && (pos != 0 && next_c != L'\0' \ 77 && IS_WORD_CHAR(prev_c) == IS_WORD_CHAR(next_c))) \ 79 && (pos == 0 || next_c == L'\0' \ 80 || IS_WORD_CHAR(prev_c) != IS_WORD_CHAR(next_c)))) [all …]
|
/third_party/musl/porting/uniproton/kernel/src/regex/ |
D | regexec.c | 54 prev_c = next_c; pos += pos_add_next; \ 55 if ((pos_add_next = mbtowc(&next_c, str_byte, MB_LEN_MAX)) <= 0) { \ 69 && (next_c != L'\0' || reg_noteol) \ 70 && (next_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))) \ 76 && (pos != 0 && next_c != L'\0' \ 77 && IS_WORD_CHAR(prev_c) == IS_WORD_CHAR(next_c))) \ 79 && (pos == 0 || next_c == L'\0' \ 80 || IS_WORD_CHAR(prev_c) != IS_WORD_CHAR(next_c)))) [all …]
|
/third_party/gstreamer/gstplugins_bad/ext/closedcaption/ |
D | gstcea708decoder.c | 288 guint8 next_c = dtvcc_buffer[index + 1]; in gst_cea708dec_process_dtvcc_byte() local 289 if (next_c >= 0x00 && next_c <= 0x1F) { /* C2 */ in gst_cea708dec_process_dtvcc_byte() 291 } else if (next_c >= 0x20 && next_c <= 0x7F) { /* G2 */ in gst_cea708dec_process_dtvcc_byte() 293 } else if (next_c >= 0x80 && next_c <= 0x9F) { /* C3 */ in gst_cea708dec_process_dtvcc_byte() 295 } else if (next_c >= 0xA0 && next_c <= 0xFF) { /* G3 */ in gst_cea708dec_process_dtvcc_byte()
|
/third_party/gstreamer/gstplugins_base/gst/typefind/ |
D | gsttypefindfunctions.c | 2028 DataScanCtx next_c; in dts_type_find() local 2033 next_c = c; in dts_type_find() 2034 data_scan_ctx_advance (tf, &next_c, frame_size); in dts_type_find() 2035 if (data_scan_ctx_ensure_data (tf, &next_c, 4)) { in dts_type_find() 2037 GST_MEMDUMP ("second frame sync", next_c.data, 4); in dts_type_find() 2038 if (GST_READ_UINT32_BE (c.data) == GST_READ_UINT32_BE (next_c.data)) in dts_type_find()
|