Home
last modified time | relevance | path

Searched refs:INTTYPE (Results 1 – 15 of 15) sorted by relevance

/external/deqp/external/vulkancts/modules/vulkan/spirv_assembly/
DvktSpvAsm64bitCompareTests.cpp153 #define GEN_INT_IMPL(INTTYPE, TYPECHAR, OPNAME, OPERATOR) \ argument
154 struct INTTYPE##OPNAME##IntImplClass : public IntCompareOperation<INTTYPE>::Implementation \
158 virtual bool run (INTTYPE left, INTTYPE right) const { return left OPERATOR right; } \
160 INTTYPE##OPNAME##IntImplClass INTTYPE##OPNAME##IntImplInstance;
162 #define GEN_ALL_INT_TYPE_IMPL(INTTYPE, TYPECHAR) \ argument
163 GEN_INT_IMPL(INTTYPE, I, Equal, == ) \
164 GEN_INT_IMPL(INTTYPE, I, NotEqual, != ) \
165 GEN_INT_IMPL(INTTYPE, TYPECHAR, GreaterThan, > ) \
166 GEN_INT_IMPL(INTTYPE, TYPECHAR, GreaterThanEqual, >= ) \
167 GEN_INT_IMPL(INTTYPE, TYPECHAR, LessThan, < ) \
[all …]
/external/antlr/runtime/ObjC/Framework/examples/treeparser/
DLang.g14 type : INTTYPE // automatic tree construction builds a node for this rule
18 INTTYPE : 'int' ;
DLangDumpDecl.m87 @"DECL", @"FLOATTYPE", @"ID", @"INT", @"INTTYPE", @"WS", @"';'", nil] retain]];
183 …/antlr/code/antlr3/runtime/ObjC/Framework/examples/treeparser/LangDumpDecl.g:13:1: type : INTTYPE ;
195 …antlr3/runtime/ObjC/Framework/examples/treeparser/LangDumpDecl.g:13:6: ( INTTYPE ) // ruleBlockSin…
196 …ce/antlr/code/antlr3/runtime/ObjC/Framework/examples/treeparser/LangDumpDecl.g:13:8: INTTYPE // alt
199 [self match:input TokenType:INTTYPE Follow:FOLLOW_INTTYPE_in_type81];
DLangDumpDecl.tokens6 INTTYPE=8
DLang.tokens6 INTTYPE=8
DLangLexer.m100 // $ANTLR start "INTTYPE"
109 NSInteger _type = INTTYPE;
134 /* $ANTLR end "INTTYPE" */
353 …/antlr3/runtime/ObjC/Framework/examples/treeparser/Lang.g:1:8: ( T__10 | INTTYPE | FLOATTYPE | ID …
497 …dit/source/antlr/code/antlr3/runtime/ObjC/Framework/examples/treeparser/Lang.g:1:16: INTTYPE // alt
DLangDumpDecl.g13 type : INTTYPE ;
DLangLexer.h26 #define INTTYPE 8 macro
DLangDumpDecl.h35 #define INTTYPE 8 macro
DLangParser.m184 @"DECL", @"FLOATTYPE", @"ID", @"INT", @"INTTYPE", @"WS", @"';'", nil] retain]];
429 …code/antlr3/runtime/ObjC/Framework/examples/treeparser/Lang.g:14:1: type : ( INTTYPE | FLOATTYPE );
450 …lr/code/antlr3/runtime/ObjC/Framework/examples/treeparser/Lang.g:14:6: ( INTTYPE | FLOATTYPE ) // …
461 if ([input LA:1] == FLOATTYPE||[input LA:1] == INTTYPE) {
DLangParser.h35 #define INTTYPE 8 macro
/external/llvm/utils/
Dllvm.grm45 INTTYPE ::= "i" ^ EUINT64VAL ;
69 IntType ::= INTTYPE;
194 PrimType ::= INTTYPE | float | double | "ppc_fp128" | fp128 | "x86_fp80"
359 | br INTTYPE ValueRef ^ "," label ValueRef ^ "," label ValueRef
412 | malloc Types ^ "," INTTYPE ValueRef OptCAlign
414 | alloca Types ^ "," INTTYPE ValueRef OptCAlign
/external/llvm-project/llvm/utils/
Dllvm.grm45 INTTYPE ::= "i" ^ EUINT64VAL ;
69 IntType ::= INTTYPE;
195 PrimType ::= INTTYPE | float | double | "ppc_fp128" | fp128 | "x86_fp80"
360 | br INTTYPE ValueRef ^ "," label ValueRef ^ "," label ValueRef
413 | malloc Types ^ "," INTTYPE ValueRef OptCAlign
415 | alloca Types ^ "," INTTYPE ValueRef OptCAlign
/external/harfbuzz_ng/src/
Dhb-cff-interp-common.hh255 template <typename INTTYPE, int minVal, int maxVal>
267 INTTYPE *ip = c->allocate_size<INTTYPE> (INTTYPE::static_size); in serialize_int()
Dhb-ot-cff-common.hh355 template <typename INTTYPE, int minVal, int maxVal>
359 if (/*unlikely*/ (!serialize_int<INTTYPE, minVal, maxVal> (c, intOp, value))) in serialize_int_op()