Searched refs:specialized (Results 1 - 13 of 13) sorted by relevance
/third_party/python/Tools/scripts/ |
H A D | summarize_stats.py | 18 specialized = iter(opcode._specialized_instructions) variable 23 name = next(specialized) 136 specialized = 0 156 specialized += count - miss 159 return basic, not_specialized, specialized 243 basic, not_specialized, specialized = categorized_counts(opcode_stats) 247 ("Not specialized", not_specialized, f"{not_specialized*100/total:0.1f}%"), 248 ("Specialized", specialized, f"{specialized*100/total:0.1f}%"),
|
H A D | generate_opcode_h.py | 134 for specialized in family: 135 deoptcodes[specialized] = basic
|
/third_party/python/Lib/test/test_importlib/ |
H A D | util.py | 66 specialized = types.new_class(name, bases) 67 specialized.__module__ = cls.__module__ 68 specialized._NAME = cls.__name__ 69 specialized._KIND = kind 72 setattr(specialized, attr, value) 73 return specialized
|
/third_party/skia/third_party/externals/spirv-cross/ |
H A D | spirv_common.hpp | 1277 SPIRConstant(TypeID constant_type_, const uint32_t *elements, uint32_t num_elements, bool specialized) in SPIRConstant() 1279 , specialization(specialized) in SPIRConstant() 1284 specialization = specialized; in SPIRConstant() 1288 SPIRConstant(TypeID constant_type_, uint32_t v0, bool specialized) in SPIRConstant() 1290 , specialization(specialized) in SPIRConstant() 1298 SPIRConstant(TypeID constant_type_, uint64_t v0, bool specialized) in SPIRConstant() 1300 , specialization(specialized) in SPIRConstant() 1309 bool specialized) in SPIRConstant() 1311 , specialization(specialized) in SPIRConstant()
|
/third_party/python/Lib/ |
H A D | dis.py | 46 for spec_op, specialized in zip(_empty_slot, _specialized_instructions): 48 _all_opname[spec_op] = specialized 49 _all_opmap[specialized] = spec_op 52 specialized: base for base, family in _specializations.items() for specialized in family
|
/third_party/rust/crates/bindgen/bindgen/ |
H A D | clang.rs | 288 self.specialized().is_some() in is_template_specialization() 291 /// Is the referent a fully specialized template specialization without any 465 /// that is being specialized. 466 pub fn specialized(&self) -> Option<Cursor> { in specialized() functions 1977 if let Some(specialized) = c.specialized() { in ast_dump() 1978 if specialized != *c { in ast_dump() 1982 String::from(prefix) + "specialized.", in ast_dump() 1983 &specialized, in ast_dump()
|
/third_party/rust/crates/bindgen/bindgen/ir/ |
H A D | template.rs | 250 declaration.specialized().or_else(|| { in from_ty()
|
/third_party/vk-gl-cts/external/openglcts/modules/glesext/ |
H A D | esextcTestCaseBase.cpp | 362 std::string specialized = specializeShader(shader_count, shader_string); in shaderSourceSpecialized() local 363 const char* specialized_cstr = specialized.c_str(); in shaderSourceSpecialized()
|
/third_party/vk-gl-cts/modules/glshared/ |
H A D | glsShaderLibraryCase.cpp | 75 vector<RequiredExtension> specialized; in checkAndSpecializeExtensions() local 93 specialized.push_back(RequiredExtension(extension.alternatives[supportedAltNdx], extension.effectiveStages)); in checkAndSpecializeExtensions() 114 return specialized; in checkAndSpecializeExtensions()
|
/third_party/gn/src/gn/ |
H A D | variables.cc | 1025 # specialized configs depending on build flags. This pattern is useful
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/ |
H A D | formatutils.cpp | 42 constexpr uint32_t PackTypeInfo(GLuint bytes, bool specialized) in PackTypeInfo() argument 46 return bytes | (rx::Log2(bytes) << 8) | (specialized << 16); in PackTypeInfo()
|
/third_party/python/ |
H A D | configure | 1854 --with-pymalloc enable specialized mallocs (default is yes)
|
/third_party/skia/third_party/externals/microhttpd/doc/ |
H A D | texinfo.tex | 567 % But first, it executes a specialized version of \checkenv
|
Completed in 50 milliseconds