Home
last modified time | relevance | path

Searched refs:SubType (Results 1 – 11 of 11) sorted by relevance

/third_party/node/deps/v8/src/codegen/
Dregister-base.h28 template <typename SubType, int kAfterLastRegister>
34 static constexpr SubType no_reg() { return SubType{kCode_no_reg}; } in no_reg()
36 static constexpr SubType from_code(int8_t code) { in from_code()
38 return SubType{code}; in from_code()
48 inline constexpr bool operator==(SubType other) const {
51 inline constexpr bool operator!=(SubType other) const {
/third_party/zlib/contrib/dotzlib/DotZLib/
DDotZLib.csproj94 SubType = "Code"
99 SubType = "Code"
104 SubType = "Code"
109 SubType = "Code"
114 SubType = "Code"
119 SubType = "Code"
124 SubType = "Code"
129 SubType = "Code"
134 SubType = "Code"
/third_party/libwebsockets/minimal-examples/embedded/esp32/esp-heltec-wb32/
Dpartitions.csv2 # Name, Type, SubType, Offset, Size, Flags
/third_party/libwebsockets/minimal-examples/embedded/esp32/esp-wrover-kit/
Dpartitions.csv2 # Name, Type, SubType, Offset, Size, Flags
/third_party/libwebsockets/minimal-examples/embedded/esp32/esp-c3dev/
Dpartitions.csv2 # Name, Type, SubType, Offset, Size, Flags
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/TextAPI/MachO/
DArchitecture.h25 #define ARCHINFO(Arch, Type, SubType) AK_##Arch, argument
/third_party/glfw/deps/mingw/
Dxinput.h199 BYTE SubType; member
/third_party/mksh/
Deval.c208 typedef struct SubType { struct
210 struct SubType *prev; /* old type */ argument
211 struct SubType *next; /* poped type (to avoid re-allocating) */ argument
217 } SubType; argument
248 SubType st_head, *st; in expand()
418 SubType *newst; in expand()
420 newst = alloc(sizeof(SubType), ATEMP); in expand()
/third_party/glfw/src/
Dwin32_joystick.c135 switch (xic->SubType) in getDeviceDescription()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/TableGen/
DTGParser.cpp834 RecTy *SubType = ParseType(); in ParseType() local
835 if (!SubType) return nullptr; in ParseType()
842 return ListRecTy::get(SubType); in ParseType()
/third_party/python/Lib/test/
Dtest_descr.py1044 class SubType(types.ModuleType): class
1051 m.__class__ = SubType
1052 self.assertTrue(m.__class__ is SubType)