/third_party/musl/src/thread/x32/ |
H A D | clone.s | 14 sub $8,%rsi
|
/third_party/musl/src/thread/x86_64/ |
H A D | clone.s | 15 sub $8,%rsi
|
/third_party/mesa3d/src/nouveau/codegen/ |
H A D | nv50_ir_from_common.h | 50 } sub; member in nv50_ir::ConverterCommon
|
/third_party/python/Tools/scripts/ |
H A D | fixps.py | 23 line = re.sub('/usr/local/bin/python',
|
/third_party/python/Lib/test/ |
H A D | reperf.py | 7 timefunc(10, p.sub, "", s)
|
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/ |
H A D | genanchorlinks.py | 18 data = re.sub( r'(<a )(id="(VUID\-[\w\-:]+)")(>)', '\g<1>\g<2> href="#\g<3>"\g<4>', data)
|
H A D | deperiodize_vuids.py | 22 data = re.sub( r'( \* \[\[VUID\-[\s\S]+?)\.?(?=(\n \* \[\[VUID\-)|(\n\*\*\*\*)|(\n// )|(\ninclude::)|(\nendif::)|(\nifdef::)|(\nifndef::))', r'\g<1>', data )
|
/third_party/skia/tests/ |
H A D | SubsetPath.h | 40 bool subset(bool testFailed, SkPath* sub);
|
/third_party/skia/third_party/externals/freetype/include/freetype/ |
H A D | ftlcdfil.h | 281 * sub :: 313 FT_Vector sub[3] );
|
/third_party/skia/third_party/externals/tint/test/ |
H A D | extract-spvasm.py | 37 test_name = re.sub('[^0-9a-zA-Z]', '_', test_name) + '.spvasm'
|
/third_party/protobuf/ |
H A D | update_compatibility_version.py | 54 return re.sub(r'LAST_RELEASED=.*$', 'LAST_RELEASED=%s' % NEW_VERSION, line)
|
/third_party/ffmpeg/libavcodec/aarch64/ |
H A D | hevcdsp_idct_neon.S | 53 sub x0, x0, x2, lsl #2 260 sub \out2, v29.4s, v31.4s 261 sub \out3, v28.4s, v30.4s 299 sub v26.4s, v26.4s, v30.4s 311 sub v24.4s, v24.4s, v28.4s 313 sub v25.4s, v25.4s, v29.4s 315 sub v27.4s, v27.4s, v31.4s 355 sub \tmp_m, \e, \o 413 sub \in0, \in0, \in1 415 sub \in [all...] |
H A D | fft_neon.S | 253 sub x6, x2, #1 // n - 1, loop counter 265 sub x5, x5, #4 // wim-- 345 sub sp, sp, #16 353 sub x0, x28, #\n4*2*8 380 sub w2, w2, #2 414 sub x1, x1, x2, lsl #3
|
/third_party/mesa3d/src/gallium/frontends/va/ |
H A D | surface.c | 11 * distribute, sub license, and/or sell copies of the Software, and to 220 vlVaSubpicture *sub; in vlVaPutSubpictures() local 234 sub = ((vlVaSubpicture **)surf->subpics.data)[i]; in vlVaPutSubpictures() 235 if (!sub) in vlVaPutSubpictures() 238 buf = handle_table_get(drv->htab, sub->image->buf); in vlVaPutSubpictures() 245 box.width = sub->dst_rect.x1 - sub->dst_rect.x0; in vlVaPutSubpictures() 246 box.height = sub->dst_rect.y1 - sub->dst_rect.y0; in vlVaPutSubpictures() 249 s = &sub in vlVaPutSubpictures() [all...] |
/third_party/mesa3d/src/freedreno/ir3/ |
H A D | disasm-a3xx.c | 214 OPC(2, OPC_SUB_U, sub.u), 215 OPC(2, OPC_SUB_S, sub.s), 342 OPC(6, OPC_ATOMIC_SUB, atomic.sub), 353 OPC(6, OPC_ATOMIC_B_SUB, atomic.b.sub), 364 OPC(6, OPC_ATOMIC_S_SUB, atomic.s.sub), 375 OPC(6, OPC_ATOMIC_G_SUB, atomic.g.sub),
|
/third_party/node/deps/v8/tools/release/ |
H A D | common_includes.py | 92 return re.sub(rexp, replacement, text, flags=re.MULTILINE) 629 line = re.sub("\d+$", self[prefix + "major"], line) 631 line = re.sub("\d+$", self[prefix + "minor"], line) 633 line = re.sub("\d+$", self[prefix + "build"], line) 635 line = re.sub("\d+$", self[prefix + "patch"], line) 638 line = re.sub("\d+$", self[prefix + "candidate"], line)
|
/third_party/mesa3d/src/gallium/drivers/radeonsi/ |
H A D | si_perfcounter.c | 634 unsigned base_gid, sub; in si_get_perfcounter_info() local 649 block = ac_lookup_counter(&pc->base, index, &base_gid, &sub); in si_get_perfcounter_info() 657 info->name = block->selector_names + sub * block->selector_name_stride; in si_get_perfcounter_info() 662 info->group_id = base_gid + sub / block->b->selectors; in si_get_perfcounter_info() 664 if (sub > 0 && sub + 1 < block->b->selectors * block->num_groups) in si_get_perfcounter_info()
|
/third_party/python/Lib/ |
H A D | functools.py | 760 for sub in typ.__subclasses__(): 761 if sub not in bases and issubclass(cls, sub): 762 found.append([s for s in sub.__mro__ if s in type_set]) 768 for sub in found: 769 for subcls in sub:
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
H A D | CommandLine.cpp | 187 // If we're adding this to all sub-commands, add it to the ones that have in addLiteralOption() 243 // If we're adding this to all sub-commands, add it to the ones that have in addOption() 366 void registerSubCommand(SubCommand *sub) { in registerSubCommand() argument 368 [sub](const SubCommand *Sub) { in registerSubCommand() 369 return (!sub->getName().empty()) && in registerSubCommand() 370 (Sub->getName() == sub->getName()); in registerSubCommand() 373 RegisteredSubCommands.insert(sub); in registerSubCommand() 377 if (sub != &*AllSubCommands) { in registerSubCommand() 382 addOption(O, sub); in registerSubCommand() 384 addLiteralOption(*O, sub, in registerSubCommand() 389 unregisterSubCommand(SubCommand *sub) unregisterSubCommand() argument [all...] |
/third_party/musl/src/math/i386/ |
H A D | scalbn.s | 18 sub $0x3ffe,%eax
|
H A D | scalbnf.s | 18 sub $0x3fe,%eax
|
/third_party/optimized-routines/string/aarch64/ |
H A D | memcmp-sve.S | 41 sub x0, x0, x1 /* return comparison */
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
H A D | Regex.h | 76 /// sub - Return the result of replacing the first match of the regex in 86 std::string sub(StringRef Repl, StringRef String,
|
/third_party/skia/third_party/externals/libjpeg-turbo/simd/x86_64/ |
H A D | jchuff-sse2.asm | 285 sub code, r9d ;Z: code -= last_dc_val; 314 sub codeq, rcx ;Z: code -= last_dc_val; 474 sub free_bitsb, nbitsb ;Z: if ((free_bits -= nbits) >= 0) 489 sub free_bitsb, nbitsb ; if ((free_bits -= nbits) <= 0) 529 sub free_bitsb, nbitsb ; if ((free_bits -= nbits) <= 0) 536 sub td, esp ; t -= (WIN64: &t_[0], UNIX: &t_[64]); 546 sub free_bitsb, nbitsb ; if ((free_bits -= nbits) <= 0) 559 sub rsp, -DCTSIZE2 * SIZEOF_WORD
|
/third_party/ffmpeg/libavfilter/dnn/ |
H A D | dnn_backend_native_layer_mathbinary.c | 31 static float sub(float src0, float src1) in sub() function 172 math_binary_not_commutative(sub, params, input, output, operands, input_operand_indexes); in ff_dnn_execute_layer_math_binary()
|