Home
last modified time | relevance | path

Searched refs:INT_TYPE (Results 1 – 20 of 20) sorted by relevance

/third_party/flutter/skia/src/gpu/text/
DGrStrikeCache.cpp61 template <typename INT_TYPE>
62 static void expand_bits(INT_TYPE* dst, in expand_bits()
71 INT_TYPE* d = dst; in expand_bits()
75 *d++ = (mask & (1 << i)) ? (INT_TYPE)(~0UL) : 0; in expand_bits()
78 dst = reinterpret_cast<INT_TYPE*>(reinterpret_cast<intptr_t>(dst) + dstRowBytes); in expand_bits()
/third_party/skia/src/gpu/text/
DGrAtlasManager.cpp37 template <typename INT_TYPE>
38 static void expand_bits(INT_TYPE* dst, in expand_bits()
47 INT_TYPE* d = dst; in expand_bits()
51 *d++ = (mask & (1 << x)) ? (INT_TYPE)(~0UL) : 0; in expand_bits()
54 dst = reinterpret_cast<INT_TYPE*>(reinterpret_cast<intptr_t>(dst) + dstRowBytes); in expand_bits()
/third_party/mindspore/mindspore/ccsrc/frontend/parallel/ops_info/
Dtensordot_info.h35 INT_TYPE = 0, enumerator
67 AxesType axes_type_ = INT_TYPE;
Dtensordot_info.cc70 axes_type_ = INT_TYPE; in GetAttrs()
128 if (axes_type_ == INT_TYPE) { // for example: axes = 3, [a, b, c, d] and [b, c, d, e] in CheckStrategy()
155 if (axes_type_ == INT_TYPE) { in InferDevMatrixShape()
297 if (axes_type_ == INT_TYPE) { in InferTensorMap()
338 if (axes_type_ == INT_TYPE) { in GenerateBatchStrategies()
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/compiler/
Dglslang_tab.h64 INT_TYPE = 267, enumerator
Dglslang.l134 "int" { context->lexAfterType = true; return(INT_TYPE); }
Dglslang.y161 %token <lex> ATTRIBUTE CONST_QUAL BOOL_TYPE FLOAT_TYPE INT_TYPE UINT_TYPE
1089 | INT_TYPE {
Dglslang_lex.cpp1758 { context->lexAfterType = true; return(INT_TYPE); }
Dglslang_tab.cpp151 INT_TYPE = 267, enumerator
/third_party/skia/third_party/externals/angle2/src/compiler/translator/
Dglslang_tab_autogen.h67 INT_TYPE = 268, enumerator
Dglslang.y162 %token <lex> ATTRIBUTE CONST_QUAL BOOL_TYPE FLOAT_TYPE INT_TYPE UINT_TYPE
1016 | INT_TYPE {
Dglslang.l177 "int" { return INT_TYPE; }
Dglslang_lex_autogen.cpp1403 YY_RULE_SETUP { return INT_TYPE; }
Dglslang_tab_autogen.cpp156 INT_TYPE = 268, enumerator
/third_party/boost/libs/rational/test/
Drational_test.cpp69 #ifndef INT_TYPE
70 #define INT_TYPE long macro
356 typedef INT_TYPE int_type;
364 char const * const int_name = BOOST_PP_STRINGIZE( INT_TYPE ); in rational_size_check()
/third_party/flutter/skia/third_party/externals/angle2/src/compiler/translator/
Dglslang.y162 %token <lex> ATTRIBUTE CONST_QUAL BOOL_TYPE FLOAT_TYPE INT_TYPE UINT_TYPE
971 | INT_TYPE {
Dglslang.l151 "int" { return INT_TYPE; }
Dglslang_lex.cpp1819 { return INT_TYPE; }
Dglslang_tab.cpp153 INT_TYPE = 267, enumerator
/third_party/python/Objects/
Dlongobject.c242 #define PYLONG_FROM_UINT(INT_TYPE, ival) \ argument
249 INT_TYPE t = (ival); \