/third_party/python/Lib/test/test_capi/ |
H A D | test_structmembers.py | 20 5, # T_INT 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) 98 'T_INT', 'T_UINT',
|
/third_party/python/Include/ |
H A D | structmember.h | 28 #define T_INT 1 macro
|
/third_party/mesa3d/src/freedreno/afuc/ |
H A D | parser.y | 121 %token <num> T_INT 263 | T_INT
|
/third_party/python/Python/ |
H A D | structmember.c | 29 case T_INT: in PyMember_GetOne() 181 case T_INT:{ in PyMember_SetOne()
|
H A D | traceback.c | 158 {"tb_lasti", T_INT, OFF(tb_lasti), READONLY}, 159 {"tb_lineno", T_INT, OFF(tb_lineno), READONLY},
|
H A 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/Modules/_multiprocessing/ |
H A D | multiprocessing.h | 71 # define T_HANDLE T_INT
|
H A D | semaphore.c | 729 {"kind", T_INT, offsetof(SemLockObject, kind), READONLY, 731 {"maxvalue", T_INT, offsetof(SemLockObject, maxvalue), READONLY,
|
/third_party/python/Doc/includes/ |
H A D | custom2.c | 72 {"number", T_INT, offsetof(CustomObject, number), 0,
|
H A D | custom4.c | 84 {"number", T_INT, offsetof(CustomObject, number), 0,
|
H A D | custom3.c | 68 {"number", T_INT, offsetof(CustomObject, number), 0,
|
/third_party/ltp/tools/sparse/sparse-src/ |
H A 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/Objects/ |
H A D | codeobject.c | 1790 {"co_argcount", T_INT, OFF(co_argcount), READONLY}, 1791 {"co_posonlyargcount", T_INT, OFF(co_posonlyargcount), READONLY}, 1792 {"co_kwonlyargcount", T_INT, OFF(co_kwonlyargcount), READONLY}, 1793 {"co_stacksize", T_INT, OFF(co_stacksize), READONLY}, 1794 {"co_flags", T_INT, OFF(co_flags), READONLY}, 1795 {"co_nlocals", T_INT, OFF(co_nlocals), READONLY}, 1801 {"co_firstlineno", T_INT, OFF(co_firstlineno), READONLY},
|
/third_party/python/Modules/ |
H A D | xxsubtype.c | 189 {"state", T_INT, offsetof(spamdictobject, state), READONLY,
|
H A D | sha256module.c | 548 {"digest_size", T_INT, offsetof(SHAobject, digestsize), READONLY, NULL},
|
H A D | selectmodule.c | 1770 # define T_INTPTRT T_INT 1784 # define T_INT64 T_INT
|
H A D | _lzmamodule.c | 1334 {"check", T_INT, offsetof(Decompressor, check), READONLY,
|
H A D | sha512module.c | 604 {"digest_size", T_INT, offsetof(SHAobject, digestsize), READONLY, NULL},
|
H A D | _datetimemodule.c | 2744 {"days", T_INT, OFFSET(days), READONLY, 2747 {"seconds", T_INT, OFFSET(seconds), READONLY, 2750 {"microseconds", T_INT, OFFSET(microseconds), READONLY,
|
H A D | socketmodule.c | 5050 {"family", T_INT, offsetof(PySocketSockObject, sock_family), READONLY, "the socket family"}, 5051 {"type", T_INT, offsetof(PySocketSockObject, sock_type), READONLY, "the socket type"}, 5052 {"proto", T_INT, offsetof(PySocketSockObject, sock_proto), READONLY, "the socket protocol"},
|
H A D | _pickle.c | 5067 {"bin", T_INT, offsetof(PicklerObject, bin)}, 5068 {"fast", T_INT, offsetof(PicklerObject, fast)},
|
/third_party/mesa3d/src/freedreno/ir3/ |
H A 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; }
|
/third_party/python/PC/ |
H A D | winreg.c | 350 {"handle", T_INT, OFF(hkey), READONLY},
|
/third_party/python/Modules/_sqlite/ |
H A D | cursor.c | 1334 {"arraysize", T_INT, offsetof(pysqlite_Cursor, arraysize), 0},
|
/third_party/python/Modules/_sre/ |
H A D | sre.c | 2801 {"flags", T_INT, PAT_OFF(flags), READONLY,
|