Home
last modified time | relevance | path

Searched refs:esc (Results 1 - 25 of 34) sorted by relevance

12

/third_party/ffmpeg/libavcodec/
H A D8svx.c92 EightSvxContext *esc = avctx->priv_data; in eightsvx_decode_frame() local
99 if (!esc->data[0] && avpkt) { in eightsvx_decode_frame()
110 esc->fib_acc[0] = avpkt->data[1] + 128; in eightsvx_decode_frame()
112 esc->fib_acc[1] = avpkt->data[2+chan_size+1] + 128; in eightsvx_decode_frame()
114 esc->data_idx = 0; in eightsvx_decode_frame()
115 esc->data_size = chan_size; in eightsvx_decode_frame()
116 if (!(esc->data[0] = av_malloc(chan_size))) in eightsvx_decode_frame()
119 if (!(esc->data[1] = av_malloc(chan_size))) { in eightsvx_decode_frame()
120 av_freep(&esc->data[0]); in eightsvx_decode_frame()
124 memcpy(esc in eightsvx_decode_frame()
159 EightSvxContext *esc = avctx->priv_data; eightsvx_decode_init() local
179 EightSvxContext *esc = avctx->priv_data; eightsvx_decode_close() local
[all...]
H A Daacdec.c414 int esc; in read_stream_mux_config() local
418 esc = get_bits(gb, 1); in read_stream_mux_config()
420 } while (esc); in read_stream_mux_config()
/third_party/rust/crates/nom/src/bytes/
H A Dtests.rs74 fn esc(i: &[u8]) -> IResult<&[u8], &[u8]> { in escaping() functions
77 assert_eq!(esc(&b"abcd;"[..]), Ok((&b";"[..], &b"abcd"[..]))); in escaping()
78 assert_eq!(esc(&b"ab\\\"cd;"[..]), Ok((&b";"[..], &b"ab\\\"cd"[..]))); in escaping()
79 assert_eq!(esc(&b"\\\"abcd;"[..]), Ok((&b";"[..], &b"\\\"abcd"[..]))); in escaping()
80 assert_eq!(esc(&b"\\n;"[..]), Ok((&b";"[..], &b"\\n"[..]))); in escaping()
81 assert_eq!(esc(&b"ab\\\"12"[..]), Ok((&b"12"[..], &b"ab\\\""[..]))); in escaping()
83 esc(&b"AB\\"[..]), in escaping()
90 esc(&b"AB\\A"[..]), in escaping()
109 fn esc(i: &str) -> IResult<&str, &str> { in escaping_str() functions
112 assert_eq!(esc("abc in escaping_str()
149 fn esc(i: &[u8]) -> IResult<&[u8], String> { escape_transform() functions
220 fn esc(i: &str) -> IResult<&str, String> { escape_transform_str() functions
[all...]
/third_party/curl/tests/unit/
H A Dunit1605.c51 char *esc; variable
53 esc = curl_easy_escape(easy, "", -1);
54 fail_unless(esc == NULL, "negative string length can't work");
56 esc = curl_easy_unescape(easy, "%41%41%41%41", -1, &len);
57 fail_unless(esc == NULL, "negative string length can't work");
/third_party/python/Lib/json/
H A Ddecoder.py60 esc = s[pos + 1:pos + 5]
61 if len(esc) == 4 and esc[1] not in 'xX':
63 return int(esc, 16)
104 esc = s[end]
109 if esc != 'u':
111 char = _b[esc]
113 msg = "Invalid \\escape: {0!r}".format(esc)
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/utils/
H A Dedit.c763 static int esc = -1; in edit_read_key() local
774 if (esc >= 0) { in edit_read_key()
776 esc = 0; in edit_read_key()
780 if (esc == 6) { in edit_read_key()
782 esc = -1; in edit_read_key()
784 esc_buf[esc++] = c; in edit_read_key()
785 esc_buf[esc] = '\0'; in edit_read_key()
789 if (esc == 1) { in edit_read_key()
792 esc = -1; in edit_read_key()
798 if (esc > in edit_read_key()
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/utils/
H A Dedit.c763 static int esc = -1; in edit_read_key() local
774 if (esc >= 0) { in edit_read_key()
776 esc = 0; in edit_read_key()
780 if (esc == 6) { in edit_read_key()
782 esc = -1; in edit_read_key()
784 esc_buf[esc++] = c; in edit_read_key()
785 esc_buf[esc] = '\0'; in edit_read_key()
789 if (esc == 1) { in edit_read_key()
792 esc = -1; in edit_read_key()
798 if (esc > in edit_read_key()
[all...]
/third_party/python/Lib/lib2to3/pgen2/
H A Dliterals.py22 esc = simple_escapes.get(tail)
23 if esc is not None:
24 return esc
/third_party/node/deps/npm/node_modules/ini/lib/
H A Dini.js242 let esc = false
246 if (esc) {
253 esc = false
257 esc = true
262 if (esc) {
/third_party/rust/crates/nom/tests/
H A Descaped.rs6 fn esc(s: &str) -> IResult<&str, &str, (&str, ErrorKind)> { in esc() functions
18 assert_eq!(esc("abcd"), Err(Err::Error(("abcd", ErrorKind::Escaped)))); in test_escaped()
/third_party/rust/crates/cxx/src/
H A Dlossy.rs39 let esc = ch.escape_debug(); in debug()
40 if esc.len() != 1 && ch != '\'' { in debug()
42 for ch in esc { in debug()
/third_party/alsa-utils/alsaucm/
H A Ddump.c94 #define ESC(s, esc) tesc((s), (esc), sizeof(esc))
261 #define JESC(s, esc) jesc((s), (esc), sizeof(esc))
/third_party/libabigail/src/
H A Dabg-regex.cc60 /// @param esc the regex_escape object holding a reference to the string
65 operator<<(std::ostream& os, const escape& esc) in operator <<() argument
69 const std::string& str = esc.ref; in operator <<()
/third_party/node/deps/openssl/openssl/crypto/txt_db/
H A Dtxt_db.c23 int esc = 0; in TXT_DB_read() local
84 esc = 0; in TXT_DB_read()
89 if (esc) in TXT_DB_read()
100 esc = (*f == '\\'); in TXT_DB_read()
/third_party/openssl/crypto/txt_db/
H A Dtxt_db.c23 int esc = 0; in TXT_DB_read() local
84 esc = 0; in TXT_DB_read()
89 if (esc) in TXT_DB_read()
100 esc = (*f == '\\'); in TXT_DB_read()
/third_party/python/Lib/wsgiref/
H A Dhandlers.py37 esc = 'surrogateescape'
39 ''.encode('utf-8', esc)
41 esc = 'replace'
88 v = v.encode(enc, esc).decode('iso-8859-1')
/third_party/alsa-utils/alsactl/
H A Dutils.c70 int esc = 0; in line_width() local
74 if (!esc && buf[count] == '\n') in line_width()
76 esc = buf[count] == '\\'; in line_width()
/third_party/musl/src/regex/
H A Dfnmatch.c51 int esc = 0; in pat_next() local
60 esc = 1; in pat_next()
95 *step = k + esc; in pat_next()
/third_party/eudev/src/udev/
H A Dudev-rules.c1905 enum escape_type esc = ESCAPE_UNSET; in udev_rules_apply_to_event() local
1927 esc = ESCAPE_UNSET; in udev_rules_apply_to_event()
2145 if (esc == ESCAPE_UNSET || esc == ESCAPE_REPLACE) { in udev_rules_apply_to_event()
2280 esc = ESCAPE_NONE; in udev_rules_apply_to_event()
2283 esc = ESCAPE_REPLACE; in udev_rules_apply_to_event()
2483 if (esc == ESCAPE_UNSET || esc == ESCAPE_REPLACE) { in udev_rules_apply_to_event()
2519 udev_event_apply_format(event, rules_str(rules, cur->key.value_off), temp, sizeof(temp), esc != ESCAPE_NONE); in udev_rules_apply_to_event()
2520 if (esc in udev_rules_apply_to_event()
2777 enum escape_type esc = ESCAPE_UNSET; udev_rules_assigning_name_to() local
[all...]
/third_party/libabigail/include/
H A Dabg-regex.h54 operator<<(std::ostream& os, const escape& esc);
/third_party/icu/icu4c/source/i18n/
H A Drbt_set.cpp123 UnicodeString esc; in _debugOut() local
124 _escape(buf, esc); in _debugOut()
125 CharString cbuf(esc); in _debugOut()
/third_party/node/deps/icu-small/source/i18n/
H A Drbt_set.cpp123 UnicodeString esc; in _debugOut() local
124 _escape(buf, esc); in _debugOut()
125 CharString cbuf(esc); in _debugOut()
/third_party/skia/third_party/externals/icu/source/i18n/
H A Drbt_set.cpp123 UnicodeString esc; in _debugOut() local
124 _escape(buf, esc); in _debugOut()
125 CharString cbuf(esc); in _debugOut()
/third_party/node/deps/v8/tools/vim/
H A Dninja-build.vim114 imap <D-k> <esc>:CrCompileFile<cr>
117 imap <C-F7> <esc>:CrCompileFile<cr>
/third_party/lzma/CPP/7zip/UI/Common/
H A DHashCalc.cpp392 AString esc; in WriteLine() local
393 CSum_Name_OriginalToEscape(utf8, esc); in WriteLine()
397 if (esc != utf8) in WriteLine()
405 if (isDir && !esc.IsEmpty() && esc.Back() != '/') in WriteLine()
406 esc += '/'; in WriteLine()
416 hashFileString += esc; in WriteLine()
427 hashFileString += esc; in WriteLine()

Completed in 21 milliseconds

12