Searched refs:Freeze (Results 1 - 14 of 14) sorted by relevance
/third_party/node/deps/v8/tools/testrunner/local/ |
H A D | statusfile_test.py | 15 from testrunner.local.utils import Freeze namespace 47 self.assertEqual(2, Freeze({1: [2]})[1][0]) 48 self.assertEqual(set([3]), Freeze({1: [2], 2: set([3])})[2]) 51 Freeze({1: [], 2: set([3])})[2] = 4 53 Freeze({1: [], 2: set([3])}).update({3: 4}) 55 Freeze({1: [], 2: set([3])})[1].append(2) 57 Freeze({1: [], 2: set([3])})[2] |= set([3])
|
H A D | utils.py | 210 def Freeze(obj): function 212 return FrozenDict((k, Freeze(v)) for k, v in list(obj.items())) 216 return tuple(Freeze(item) for item in obj)
|
H A D | statusfile.py | 32 from testrunner.local.utils import Freeze namespace 277 return Freeze(rules), Freeze(prefix_rules)
|
/third_party/node/deps/v8/src/wasm/ |
H A D | signature-map.h | 39 void Freeze() { frozen_ = true; } in Freeze() function in v8::internal::wasm::SignatureMap
|
H A D | module-decoder.cc | 772 module_->signature_map.Freeze(); in DecodeTypeSection()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
H A D | Instruction.cpp | 371 case Freeze: return "freeze"; in getOpcodeName()
|
H A D | Instructions.cpp | 4092 : UnaryInstruction(S->getType(), Freeze, S, InsertBefore) { 4098 : UnaryInstruction(S->getType(), Freeze, S, InsertAtEnd) { local
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
H A D | PatternMatch.h | 1260 inline OneOps_match<OpTy, Instruction::Freeze> m_Freeze(const OpTy &Op) { in m_Freeze() 1261 return OneOps_match<OpTy, Instruction::Freeze>(Op); in m_Freeze()
|
H A D | Instructions.h | 5326 return I->getOpcode() == Freeze; in classof()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/AsmParser/ |
H A D | LLLexer.cpp | 898 INSTKEYWORD(freeze, Freeze); in LexIdentifier()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
H A D | TargetLoweringBase.cpp | 1647 case Freeze: return 0; in InstructionOpcodeToISD()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
H A D | InstructionSimplify.cpp | 5322 /// Given operands for a Freeze, see if we can fold the result. 5477 case Instruction::Freeze: in SimplifyInstruction()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Bitcode/Writer/ |
H A D | BitcodeWriter.cpp | 3038 case Instruction::Freeze: in writeInstruction()
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/ |
H A D | stylo.hpp | [all...] |
Completed in 68 milliseconds