Home
last modified time | relevance | path

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

12

/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},
D_lzmamodule.c1333 {"check", T_INT, offsetof(Decompressor, check), READONLY,
/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},
/third_party/python/PC/
Dwinreg.c350 {"handle", T_INT, OFF(hkey), READONLY},
/third_party/python/Doc/c-api/
Dstructures.rst424 T_INT int
/third_party/python/Doc/extending/
Dnewtypes_tutorial.rst443 {"number", T_INT, offsetof(CustomObject, number), 0,
612 {"number", T_INT, offsetof(CustomObject, number), 0,

12