/third_party/ffmpeg/libavcodec/ |
D | 8svx.c | 89 EightSvxContext *esc = avctx->priv_data; in eightsvx_decode_frame() local 96 if (!esc->data[0] && avpkt) { in eightsvx_decode_frame() 107 esc->fib_acc[0] = avpkt->data[1] + 128; in eightsvx_decode_frame() 109 esc->fib_acc[1] = avpkt->data[2+chan_size+1] + 128; in eightsvx_decode_frame() 111 esc->data_idx = 0; in eightsvx_decode_frame() 112 esc->data_size = chan_size; in eightsvx_decode_frame() 113 if (!(esc->data[0] = av_malloc(chan_size))) in eightsvx_decode_frame() 116 if (!(esc->data[1] = av_malloc(chan_size))) { in eightsvx_decode_frame() 117 av_freep(&esc->data[0]); in eightsvx_decode_frame() 121 memcpy(esc->data[0], &avpkt->data[hdr_size], chan_size); in eightsvx_decode_frame() [all …]
|
D | aacdec.c | 415 int esc; in read_stream_mux_config() local 419 esc = get_bits(gb, 1); in read_stream_mux_config() 421 } while (esc); in read_stream_mux_config()
|
/third_party/rust/crates/nom/src/bytes/ |
D | tests.rs | 74 fn esc(i: &[u8]) -> IResult<&[u8], &[u8]> { in escaping() function 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> { 112 assert_eq!(esc("abcd;"), Ok((";", "abcd"))); [all …]
|
/third_party/python/Lib/json/ |
D | decoder.py | 60 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/ |
D | edit.c | 763 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 > 1) { in edit_read_key() [all …]
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/utils/ |
D | edit.c | 763 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 > 1) { in edit_read_key() [all …]
|
/third_party/node/deps/npm/node_modules/ini/ |
D | ini.js | 182 var esc = false 186 if (esc) { 192 esc = false 196 esc = true 200 if (esc)
|
/third_party/python/Lib/lib2to3/pgen2/ |
D | literals.py | 22 esc = simple_escapes.get(tail) 23 if esc is not None: 24 return esc
|
/third_party/rust/crates/cxx/src/ |
D | lossy.rs | 39 let esc = ch.escape_debug(); in debug() localVariable 40 if esc.len() != 1 && ch != '\'' { in debug() 42 for ch in esc { in debug()
|
/third_party/rust/crates/nom/tests/ |
D | escaped.rs | 6 fn esc(s: &str) -> IResult<&str, &str, (&str, ErrorKind)> { in esc() function 18 assert_eq!(esc("abcd"), Err(Err::Error(("abcd", ErrorKind::Escaped))));
|
/third_party/node/deps/npm/lib/config/ |
D | core.js | 411 return f.replace(envExpr, function (orig, esc, name) { argument 412 esc = esc.length && esc.length % 2 413 if (esc) return orig
|
/third_party/openssl/crypto/txt_db/ |
D | txt_db.c | 23 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/alsa-utils/alsaucm/ |
D | dump.c | 94 #define ESC(s, esc) tesc((s), (esc), sizeof(esc)) argument 260 #define JESC(s, esc) jesc((s), (esc), sizeof(esc)) argument
|
/third_party/libabigail/src/ |
D | abg-regex.cc | 65 operator<<(std::ostream& os, const escape& esc) in operator <<() argument 69 const std::string& str = esc.ref; in operator <<()
|
/third_party/python/Lib/wsgiref/ |
D | handlers.py | 37 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/ |
D | utils.c | 70 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/ |
D | fnmatch.c | 51 int esc = 0; in pat_next() local 60 esc = 1; in pat_next() 95 *step = k + esc; in pat_next()
|
/third_party/node/deps/icu-small/source/i18n/ |
D | rbt_set.cpp | 123 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/ |
D | rbt_set.cpp | 123 UnicodeString esc; in _debugOut() local 124 _escape(buf, esc); in _debugOut() 125 CharString cbuf(esc); in _debugOut()
|
/third_party/icu/icu4c/source/i18n/ |
D | rbt_set.cpp | 123 UnicodeString esc; in _debugOut() local 124 _escape(buf, esc); in _debugOut() 125 CharString cbuf(esc); in _debugOut()
|
/third_party/flutter/skia/third_party/externals/icu/source/i18n/ |
D | rbt_set.cpp | 123 UnicodeString esc; in _debugOut() local 124 _escape(buf, esc); in _debugOut() 125 CharString cbuf(esc); in _debugOut()
|
/third_party/libabigail/include/ |
D | abg-regex.h | 54 operator<<(std::ostream& os, const escape& esc);
|
/third_party/libfuse/lib/ |
D | fuse_opt.c | 115 static int add_opt_common(char **opts, const char *opt, int esc) in add_opt_common() argument 130 if (esc && (*opt == ',' || *opt == '\\')) in add_opt_common()
|
/third_party/flutter/skia/third_party/externals/icu/source/data/unit/ |
D | es.txt | 951 dnam{"mi esc."} 952 one{"{0}mi esc."} 953 other{"{0}mi esc."} 1518 dnam{"mi esc."} 1519 one{"{0} mi esc."} 1520 other{"{0} mi esc."}
|
/third_party/alsa-utils/amixer/ |
D | amixer.c | 1712 int n, esc, quote; in split_line() local 1722 esc = 0; in split_line() 1726 if (esc) in split_line() 1727 esc = 0; in split_line() 1732 esc = 1; in split_line()
|