Home
last modified time | relevance | path

Searched refs:T_INT (Results 1 – 25 of 35) sorted by relevance

12

/third_party/flatbuffers/kotlin/flatbuffers-kotlin/src/commonMain/kotlin/com/google/flatbuffers/kotlin/
DFlexBuffersInternals.kt99 T_INT, T_UINT, T_FLOAT, T_BOOL -> true in paddingBytes()
111 internal fun FlexBufferType.isTypedVectorElementType(): Boolean = (this.value in T_INT.value..T_KEY… in isTypedVector()
114 internal fun FlexBufferType.toTypedVector(): FlexBufferType = (this - T_INT) + T_VECTOR_INT in isTypedVector()
116 internal fun FlexBufferType.toElementTypedVector(): FlexBufferType = this - T_VECTOR_INT + T_INT in isTypedVector()
120 var type: FlexBufferType = T_INT, in isTypedVector()
171 T_INT -> "Int" in typeToString()
223 internal val T_INT = FlexBufferType(1) constant
DFlexBuffers.kt86 public val isInt: Boolean get() = type == T_INT || type == T_INDIRECT_INT
228 T_INDIRECT_INT, T_INDIRECT_UINT, T_INT, T_BOOL, T_UINT -> buffer.readULong(pos, width) in get()
246 T_INT -> buffer.readInt(end, parentWidth).toFloat() in pos()
266 T_INT -> buffer.readInt(pos, width).toDouble() in toDouble()
298 T_INT -> toLong().toString() in toString()
DJSON.kt53 T_INT -> out.put(toLong().toString()) in toJson()
330 return if (useDouble) T_FLOAT else T_INT in parseNumber()
DFlexBuffersBuilder.kt125 run { stack.add(Value(T_INT, putKey(key), value.toULong().widthInUBits(), value.toULong())) } in put()
507 T_NULL, T_BOOL, T_INT, T_UINT -> writeInt(toWrite.iValue, byteWidth) in writeAny()
/third_party/python/Lib/test/
Dtest_structmembers.py56 ts.T_INT = INT_MAX
57 self.assertEqual(ts.T_INT, INT_MAX)
58 ts.T_INT = INT_MIN
59 self.assertEqual(ts.T_INT, INT_MIN)
/third_party/python/Python/
Dstructmember.c29 case T_INT: in PyMember_GetOne()
181 case T_INT:{ in PyMember_SetOne()
Dtraceback.c152 {"tb_lasti", T_INT, OFF(tb_lasti), READONLY},
153 {"tb_lineno", T_INT, OFF(tb_lineno), READONLY},
Dsymtable.c157 {"nested", T_INT, OFF(ste_nested), READONLY},
158 {"type", T_INT, OFF(ste_type), READONLY},
159 {"lineno", T_INT, OFF(ste_lineno), READONLY},
/third_party/python/Include/
Dstructmember.h28 #define T_INT 1 macro
/third_party/python/Objects/
Dcodeobject.c384 {"co_argcount", T_INT, OFF(co_argcount), READONLY},
385 {"co_posonlyargcount", T_INT, OFF(co_posonlyargcount), READONLY},
386 {"co_kwonlyargcount", T_INT, OFF(co_kwonlyargcount), READONLY},
387 {"co_nlocals", T_INT, OFF(co_nlocals), READONLY},
388 {"co_stacksize",T_INT, OFF(co_stacksize), READONLY},
389 {"co_flags", T_INT, OFF(co_flags), READONLY},
398 {"co_firstlineno", T_INT, OFF(co_firstlineno), READONLY},
/third_party/mesa3d/src/freedreno/afuc/
Dparser.y121 %token <num> T_INT
263 | T_INT
Dlexer.l43 0|[1-9][0-9]* yylval.num = strtoul(yytext, NULL, 0); return T_INT;
/third_party/python/Modules/_multiprocessing/
Dmultiprocessing.h69 # define T_HANDLE T_INT
Dsemaphore.c729 {"kind", T_INT, offsetof(SemLockObject, kind), READONLY,
731 {"maxvalue", T_INT, offsetof(SemLockObject, maxvalue), READONLY,
/third_party/ltp/tools/sparse/sparse-src/
Dsymbol.c870 #define T_INT(R, S, M) SYM_BASETYPE, M, R, &bits_in_##S, &max_int_alignment, &int_type macro
871 #define T__INT(R, S) T_INT(R, S, MOD_SIGNED)
872 #define T_SINT(R, S) T_INT(R, S, MOD_ESIGNED)
873 #define T_UINT(R,S) T_INT(R, S, MOD_UNSIGNED)
889 { &bool_ctype, T_INT(-3, bool, MOD_UNSIGNED) },
/third_party/python/Doc/includes/
Dcustom2.c72 {"number", T_INT, offsetof(CustomObject, number), 0,
Dcustom3.c68 {"number", T_INT, offsetof(CustomObject, number), 0,
Dcustom4.c84 {"number", T_INT, offsetof(CustomObject, number), 0,
/third_party/python/Modules/
Dxxsubtype.c189 {"state", T_INT, offsetof(spamdictobject, state), READONLY,
Dselectmodule.c1749 # define T_INTPTRT T_INT
1763 # define T_INT64 T_INT
Dsha256module.c545 {"digest_size", T_INT, offsetof(SHAobject, digestsize), READONLY, NULL},
Dsha512module.c601 {"digest_size", T_INT, offsetof(SHAobject, digestsize), READONLY, NULL},
/third_party/mesa3d/src/freedreno/ir3/
Dir3_parser.y318 %token <num> T_INT
708 | T_INT { $$ = $1; }
709 | '-' T_INT { $$ = -$2; }
1388 integer: T_INT { $$ = $1; }
1389 | '-' T_INT { $$ = -$2; }
Dir3_lexer.l97 [0-9]* ir3_yylval.num = strtoul(yytext, NULL, 0); return T_INT;
/third_party/python/Modules/_sqlite/
Dcursor.c1012 {"arraysize", T_INT, offsetof(pysqlite_Cursor, arraysize), 0},

12