/third_party/python/Lib/test/ |
D | test_structmembers.py | 56 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/ |
D | structmember.c | 29 case T_INT: in PyMember_GetOne() 181 case T_INT:{ in PyMember_SetOne()
|
D | traceback.c | 152 {"tb_lasti", T_INT, OFF(tb_lasti), READONLY}, 153 {"tb_lineno", T_INT, OFF(tb_lineno), READONLY},
|
D | symtable.c | 157 {"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/ |
D | structmember.h | 28 #define T_INT 1 macro
|
/third_party/python/Objects/ |
D | codeobject.c | 384 {"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/ |
D | parser.y | 121 %token <num> T_INT 263 | T_INT
|
D | lexer.l | 43 0|[1-9][0-9]* yylval.num = strtoul(yytext, NULL, 0); return T_INT;
|
/third_party/python/Modules/_multiprocessing/ |
D | multiprocessing.h | 69 # define T_HANDLE T_INT
|
D | semaphore.c | 729 {"kind", T_INT, offsetof(SemLockObject, kind), READONLY, 731 {"maxvalue", T_INT, offsetof(SemLockObject, maxvalue), READONLY,
|
/third_party/ltp/tools/sparse/sparse-src/ |
D | symbol.c | 870 #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/ |
D | custom2.c | 72 {"number", T_INT, offsetof(CustomObject, number), 0,
|
D | custom3.c | 68 {"number", T_INT, offsetof(CustomObject, number), 0,
|
D | custom4.c | 84 {"number", T_INT, offsetof(CustomObject, number), 0,
|
/third_party/python/Modules/ |
D | xxsubtype.c | 189 {"state", T_INT, offsetof(spamdictobject, state), READONLY,
|
D | selectmodule.c | 1749 # define T_INTPTRT T_INT 1763 # define T_INT64 T_INT
|
D | sha256module.c | 545 {"digest_size", T_INT, offsetof(SHAobject, digestsize), READONLY, NULL},
|
D | sha512module.c | 601 {"digest_size", T_INT, offsetof(SHAobject, digestsize), READONLY, NULL},
|
D | _lzmamodule.c | 1333 {"check", T_INT, offsetof(Decompressor, check), READONLY,
|
/third_party/mesa3d/src/freedreno/ir3/ |
D | ir3_parser.y | 318 %token <num> T_INT 708 | T_INT { $$ = $1; } 709 | '-' T_INT { $$ = -$2; } 1388 integer: T_INT { $$ = $1; } 1389 | '-' T_INT { $$ = -$2; }
|
D | ir3_lexer.l | 97 [0-9]* ir3_yylval.num = strtoul(yytext, NULL, 0); return T_INT;
|
/third_party/python/Modules/_sqlite/ |
D | cursor.c | 1012 {"arraysize", T_INT, offsetof(pysqlite_Cursor, arraysize), 0},
|
/third_party/python/PC/ |
D | winreg.c | 350 {"handle", T_INT, OFF(hkey), READONLY},
|
/third_party/python/Doc/c-api/ |
D | structures.rst | 424 T_INT int
|
/third_party/python/Doc/extending/ |
D | newtypes_tutorial.rst | 443 {"number", T_INT, offsetof(CustomObject, number), 0, 612 {"number", T_INT, offsetof(CustomObject, number), 0,
|