Home
last modified time | relevance | path

Searched refs:next_c (Results 1 – 6 of 6) sorted by relevance

/third_party/musl/porting/liteos_m/kernel/src/regex/
Dregexec.c54 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/
Dregexec.c54 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/
Dregexec.c54 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/
Dregexec.c54 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/
Dgstcea708decoder.c288 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/
Dgsttypefindfunctions.c2028 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()