/third_party/mesa3d/src/freedreno/ir3/ |
H A D | ir3_lower_spill.c | 104 handle_oob_offset_reload(struct ir3_instruction *reload) in handle_oob_offset_reload() argument 106 unsigned components = reload->srcs[2]->uim_val; in handle_oob_offset_reload() 107 unsigned offset = reload->srcs[1]->uim_val; in handle_oob_offset_reload() 108 if (offset + components * component_bytes(reload->dsts[0]) < MAX_CAT6_SIZE) in handle_oob_offset_reload() 111 set_base_reg(reload, offset); in handle_oob_offset_reload() 112 reset_base_reg(reload); in handle_oob_offset_reload() 113 reload->srcs[1]->uim_val = 0; in handle_oob_offset_reload() 152 split_reload(struct ir3_instruction *reload) in split_reload() argument 154 unsigned orig_components = reload->srcs[2]->uim_val; in split_reload() 156 assert(reload in split_reload() [all...] |
/third_party/skia/third_party/externals/freetype/src/pfr/ |
H A D | pfrsbit.c | 73 FT_UInt n, reload; in pfr_bitwriter_decode_bytes() local 85 reload = n & 7; in pfr_bitwriter_decode_bytes() 89 if ( ( n & 7 ) == reload ) in pfr_bitwriter_decode_bytes() 128 FT_UInt n, reload; in pfr_bitwriter_decode_rle1() local 141 reload = 1; in pfr_bitwriter_decode_rle1() 145 if ( reload ) in pfr_bitwriter_decode_rle1() 195 reload = ( --count <= 0 ); in pfr_bitwriter_decode_rle1() 209 FT_UInt n, reload; in pfr_bitwriter_decode_rle2() local 220 reload = 1; in pfr_bitwriter_decode_rle2() 224 if ( reload ) in pfr_bitwriter_decode_rle2() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/Native/ |
H A D | PDBFile.cpp | 268 if (auto EC = TempGlobals->reload()) in getPDBGlobalsStream() 281 if (auto EC = TempInfo->reload()) in getPDBInfoStream() 294 if (auto EC = TempDbi->reload(this)) in getPDBDbiStream() 307 if (auto EC = TempTpi->reload()) in getPDBTpiStream() 323 if (auto EC = TempIpi->reload()) in getPDBIpiStream() 341 if (auto EC = TempPublics->reload()) in getPDBPublicsStream() 360 if (auto EC = TempSymbols->reload()) in getPDBSymbolStream() 375 if (auto EC = N->reload(Reader)) in getStringTable() 395 if (auto EC = IJ->reload(*Strings)) in getInjectedSourceStream()
|
H A D | SymbolStream.cpp | 27 Error SymbolStream::reload() { in reload() function in SymbolStream
|
/third_party/ltp/testscripts/ |
H A D | ltpdmmapper.sh | 153 dmsetup reload dm-test-1-new ltp-dev-mapper-table1 154 dmsetup reload dm-test-2-new ltp-dev-mapper-table2 155 dmsetup reload dm-test-3-new ltp-dev-mapper-table3 156 dmsetup reload dm-test-4-new ltp-dev-mapper-table4
|
/third_party/python/Lib/test/test_importlib/ |
H A D | test_api.py | 209 self.init.reload(module) 222 reloaded = self.init.reload(module) 232 reloaded = self.init.reload(types) 243 reloaded = self.init.reload(types) 288 reloaded = self.init.reload(module) 347 reloaded = self.init.reload(module) 365 reloaded = self.init.reload(ham) 369 #Test that reload() throws ModuleNotFounderror when reloading 378 self.init.reload(module)
|
/third_party/python/Lib/idlelib/ |
H A D | zzdummy.py | 44 def reload(cls): member in ZzDummy 68 ZzDummy.reload()
|
H A D | parenmatch.py | 52 def reload(cls): member in ParenMatch 178 ParenMatch.reload()
|
H A D | codecontext.py | 78 def reload(cls): member in CodeContext 263 CodeContext.reload()
|
H A D | autocomplete.py | 53 def reload(cls): member in AutoComplete 224 AutoComplete.reload()
|
/third_party/backends/backend/ |
H A D | epson.c | 180 Also force reload after change of scan mode. 3781 handle_depth_halftone (Epson_Scanner * s, SANE_Bool * reload) in handle_depth_halftone() argument 3814 setOptionState (s, aas, OPT_AAS, reload); in handle_depth_halftone() 3815 setOptionState (s, thresh, OPT_THRESHOLD, reload); in handle_depth_halftone() 3936 setOptionState (s, s->hw->ADF && s->hw->use_extension, OPT_BAY, &reload); in handle_source() 3954 SANE_Bool reload = SANE_FALSE; in setvalue() local 4013 reload = SANE_TRUE; in setvalue() 4028 reload = SANE_TRUE; in setvalue() 4042 OPT_HALFTONE, &reload); in setvalue() 4045 setOptionState (s, !isColor, OPT_DROPOUT, &reload); in setvalue() [all...] |
H A D | epson2.c | 1695 handle_depth_halftone(Epson_Scanner *s, SANE_Bool *reload) in handle_depth_halftone() argument 1703 setOptionState(s, thresh, OPT_THRESHOLD, reload); in handle_depth_halftone() 1716 setOptionState(s, aas, OPT_AAS, reload); in handle_depth_halftone() 1717 setOptionState(s, thresh, OPT_THRESHOLD, reload); in handle_depth_halftone() 1845 SANE_Bool reload = SANE_FALSE; in setvalue() local 1891 reload = SANE_TRUE; in setvalue() 1911 reload = SANE_TRUE; in setvalue() 1925 OPT_HALFTONE, &reload); in setvalue() 1928 setOptionState(s, !isColor, OPT_DROPOUT, &reload); in setvalue() 1932 OPT_COLOR_CORRECTION, &reload); in setvalue() [all...] |
/third_party/mesa3d/src/amd/compiler/ |
H A D | aco_spill.cpp | 353 aco_ptr<Pseudo_instruction> reload{ in do_reload() 355 reload->operands[0] = Operand::c32(spill_id); in do_reload() 356 reload->definitions[0] = Definition(new_name); in do_reload() 358 return reload; in do_reload() 662 /* If it can be rematerialized, keep the variable spilled if all predecessors do not reload in init_live_in_vars() 791 /* variable is spilled at predecessor and live at current block: create reload instruction */ in add_coupling_code() 793 aco_ptr<Instruction> reload = do_reload(ctx, live.first, new_name, spills_exit_it->second); in add_coupling_code() local 794 instructions.emplace_back(std::move(reload)); in add_coupling_code() 826 * create reload instruction */ in add_coupling_code() 828 aco_ptr<Instruction> reload in add_coupling_code() local 1026 aco_ptr<Instruction> reload = add_coupling_code() local 1078 aco_ptr<Instruction> reload = add_coupling_code() local 1269 aco_ptr<Instruction> reload = process_block() local 1528 reload_vgpr(spill_ctx& ctx, Block& block, std::vector<aco_ptr<Instruction>>& instructions, aco_ptr<Instruction>& reload, std::vector<uint32_t>& slots) reload_vgpr() argument [all...] |
/third_party/ffmpeg/tests/fate/ |
H A D | hevc.mak | 229 # this sample has two stsd entries and needs to reload extradata 230 FATE_HEVC-$(call FRAMEMD5, MOV, HEVC, SCALE_FILTER) += fate-hevc-extradata-reload 231 fate-hevc-extradata-reload: CMD = framemd5 -i $(TARGET_SAMPLES)/hevc/extradata-reload-multi-stsd.mov -sws_flags bitexact
|
/third_party/mesa3d/src/gallium/drivers/lima/ |
H A D | lima_blit.c | 90 if (surf->reload & PIPE_CLEAR_DEPTH) in lima_pack_blit_cmd() 92 if (surf->reload & PIPE_CLEAR_STENCIL) { in lima_pack_blit_cmd() 307 lima_dst_surf->reload = reload_flags; in lima_do_blit() 309 lima_dst_surf->reload = 0; in lima_do_blit()
|
H A D | lima_resource.h | 69 unsigned reload; member
|
/third_party/python/Lib/test/ |
H A D | test_imp.py | 418 """Very basic tests to make sure that imp.reload() operates just like 419 reload().""" 431 imp.reload(os) 436 imp.reload(time) 441 imp.reload(marshal) 451 imp.reload(parser)
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/PDB/Native/ |
H A D | InjectedSourceStream.h | 27 Error reload(const PDBStringTable &Strings);
|
H A D | SymbolStream.h | 27 Error reload();
|
H A D | InfoStream.h | 34 Error reload();
|
H A D | PDBStringTable.h | 35 Error reload(BinaryStreamReader &Reader);
|
/third_party/backends/backend/escl/ |
H A D | escl_status.c | 206 reload: in escl_status() 269 goto reload; in escl_status()
|
/third_party/node/deps/npm/node_modules/@npmcli/arborist/lib/ |
H A D | edge.js | 101 this.reload(true) 251 reload (hard = false) {
|
/third_party/mesa3d/src/gallium/drivers/asahi/ |
H A D | agx_blit.c | 59 dev->reload.bo = bo; in agx_build_reload_shader() 77 dev->reload.format[i] = bo->ptr.gpu + offset; in agx_build_reload_shader() 136 * reload is not in use, a shader is used to clear a particular colour. At the
|
/third_party/node/test/fixtures/wpt/FileAPI/url/ |
H A D | url-reload.window.js | 24 frame.contentWindow.location.reload();
|