Home
last modified time | relevance | path

Searched refs:code1 (Results 1 – 20 of 20) sorted by relevance

/third_party/python/Lib/test/
Dtest_unparse.py122 def check_ast_roundtrip(self, code1, **kwargs): argument
123 with self.subTest(code1=code1, ast_parse_kwargs=kwargs):
124 ast1 = ast.parse(code1, **kwargs)
133 def get_source(self, code1, code2=None): argument
134 code2 = code2 or code1
135 code1 = ast.unparse(ast.parse(code1))
136 return code1, code2
138 def check_src_roundtrip(self, code1, code2=None): argument
139 code1, code2 = self.get_source(code1, code2)
140 with self.subTest(code1=code1, code2=code2):
[all …]
/third_party/ffmpeg/libavcodec/arm/
Ddca.h32 static inline int decode_blockcodes(int code1, int code2, int levels, in decode_blockcodes() argument
71 "+&r"(code1), "+&r"(code2) in decode_blockcodes()
76 return code1 | code2; in decode_blockcodes()
/third_party/python/Lib/
Dcodeop.py89 code1 = err1 = err2 = None
91 code1 = compiler(source + "\n", filename, symbol)
101 if not code1 and _is_syntax_error(err1, err2):
Dsre_parse.py554 code1 = _class_escape(source, this)
567 code1 = LITERAL, _ord(this)
575 if code1[0] is IN:
576 code1 = code1[1][0]
577 setappend(code1)
591 if code1[0] != LITERAL or code2[0] != LITERAL:
594 lo = code1[1]
601 if code1[0] is IN:
602 code1 = code1[1][0]
603 setappend(code1)
/third_party/node/deps/v8/tools/profview/
Dprofile-utils.js89 function codeEquals(code1, code2, allowDifferentKinds = false) { argument
90 if (!code1 || !code2) return false;
91 if (code1.name !== code2.name || code1.type !== code2.type) return false;
93 if (code1.type === 'CODE') {
94 if (!allowDifferentKinds && code1.kind !== code2.kind) return false;
95 } else if (code1.type === 'JS') {
96 if (!allowDifferentKinds && code1.kind !== code2.kind) return false;
97 if (code1.func !== code2.func) return false;
/third_party/skia/third_party/externals/freetype/src/pfr/
Dpfrobjs.c483 FT_UInt32 code1, code2, pair; in pfr_face_get_kerning() local
500 code1 = phy_font->chars[glyph1].char_code; in pfr_face_get_kerning()
502 pair = PFR_KERN_INDEX( code1, code2 ); in pfr_face_get_kerning()
/third_party/ffmpeg/libavcodec/
Dscpr.c40 rc->code1 = 0; in init_rangecoder()
140 rc->code1 += t + 1; in decode0()
146 rc->code1 <<= 8; in decode0()
158 *freq = total_freq * (uint64_t)(rc->code - rc->code1) / rc->range; in get_freq0()
Dralf.c300 int code1, code2; in decode_channel() local
303 code1 = t / range2; in decode_channel()
305 dst[i] = extend_code(gb, code1, range, 0) * (1U << add_bits); in decode_channel()
Ddca_core.c526 static inline int decode_blockcodes(int code1, int code2, int levels, int32_t *audio) in decode_blockcodes() argument
532 div = FASTDIV(code1, levels); in decode_blockcodes()
533 audio[n] = code1 - div * levels - offset; in decode_blockcodes()
534 code1 = div; in decode_blockcodes()
542 return code1 | code2; in decode_blockcodes()
549 int code1 = get_bits(&s->gb, block_code_nbits[abits - 1]); in parse_block_codes() local
554 if (decode_blockcodes(code1, code2, levels, audio)) { in parse_block_codes()
Dscpr3.c725 rc->code1++; in sync_code3()
726 if (rc->code1 == 0x20000) { in sync_code3()
728 rc->code1 = 0; in sync_code3()
926 rc->code1 = 0; in init_rangecoder3()
Dscpr.h38 uint32_t code1; member
/third_party/python/Lib/idlelib/idle_test/
Dtest_run.py65 for (code1, exc1, msg1), (code2, exc2, msg2) in data2:
66 with self.subTest(codes=(code1,code2)):
68 eval(compile(code1, '', 'eval'))
/third_party/node/deps/v8/src/diagnostics/
Dunwinding-info-win64.cc232 uint8_t code1 = OpNop, in Combine8BitUnwindCodes() argument
235 return static_cast<uint32_t>(code0) | (static_cast<uint32_t>(code1) << 8) | in Combine8BitUnwindCodes()
/third_party/python/Modules/
Dunicodedata.c730 Py_UCS4 code1 = PyUnicode_READ(kind, data, i1); in nfc_nfkc() local
731 int comb1 = _getrecord_ex(code1)->combining; in nfc_nfkc()
741 l = find_nfc_index(nfc_last, code1); in nfc_nfkc()
/third_party/ltp/testcases/kernel/fs/scsi/ltpscsi/
Dsg_err.c260 unsigned char code1, code2; member
266 unsigned char code1, code2_min, code2_max; member
998 if (additional[k].code1 == asc && additional[k].code2 == ascq) { in sg_print_asc_ascq()
1026 if ((additional2[k].code1 == asc) && in sg_print_asc_ascq()
/third_party/typescript/src/compiler/
Dutilities.ts5359 const code1 = ((ch1 & 0B00111111) << 2) | ((ch2 >> 4) & 0B00000011); constant
5364 expandedCharCodes.push(code1);
5367 expandedCharCodes.push(code1, code2);
5370 expandedCharCodes.push(code1, code2, code3);
/third_party/node/deps/v8/src/builtins/arm64/
Dbuiltins-arm64.cc1975 int code1 = config->GetAllocatableGeneralCode(i); in Generate_ContinueToBuiltinHelper() local
1977 Register reg1 = Register::from_code(code1); in Generate_ContinueToBuiltinHelper()
/third_party/chromium/patch/
D0003-ohos-1115.patch255392 - code1 { db close }
255401 - foreach c {code1 code2 code3} {
255421 - code1 {
255440 - code1 { db close }
255455 - code1 {
255490 - catch { code1 { db close } }
255499 - code1 {
255527 - code1 { db close }
255531 - code1 { sqlite3 db file:test.db?readonly_shm=1 }
255551 - catch { code1 { db close } }
[all …]
/third_party/typescript/lib/
DtypingsInstaller.js19582 var code1 = ((ch1 & 63) << 2) | ((ch2 >> 4) & 3);
19586 expandedCharCodes.push(code1);
19589 expandedCharCodes.push(code1, code2);
19592 expandedCharCodes.push(code1, code2, code3);
Dtsc.js15451 var code1 = ((ch1 & 63) << 2) | ((ch2 >> 4) & 3);
15455 expandedCharCodes.push(code1);
15458 expandedCharCodes.push(code1, code2);
15461 expandedCharCodes.push(code1, code2, code3);