/third_party/ffmpeg/libavcodec/ |
H A D | 8svx.c | 92 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 D | aacdec.c | 414 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 D | tests.rs | 74 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 D | unit1605.c | 51 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 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/ |
H A 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 > in edit_read_key() [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/utils/ |
H A 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 > in edit_read_key() [all...] |
/third_party/python/Lib/lib2to3/pgen2/ |
H A D | literals.py | 22 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 D | ini.js | 242 let esc = false 246 if (esc) { 253 esc = false 257 esc = true 262 if (esc) {
|
/third_party/rust/crates/nom/tests/ |
H A D | escaped.rs | 6 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 D | lossy.rs | 39 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 D | dump.c | 94 #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 D | abg-regex.cc | 60 /// @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 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/openssl/crypto/txt_db/ |
H A 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/python/Lib/wsgiref/ |
H A 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/ |
H A 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/ |
H A 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/eudev/src/udev/ |
H A D | udev-rules.c | 1905 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 D | abg-regex.h | 54 operator<<(std::ostream& os, const escape& esc);
|
/third_party/icu/icu4c/source/i18n/ |
H A D | rbt_set.cpp | 123 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 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/ |
H A D | rbt_set.cpp | 123 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 D | ninja-build.vim | 114 imap <D-k> <esc>:CrCompileFile<cr> 117 imap <C-F7> <esc>:CrCompileFile<cr>
|
/third_party/lzma/CPP/7zip/UI/Common/ |
H A D | HashCalc.cpp | 392 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()
|