Home
last modified time | relevance | path

Searched refs:s_int (Results 1 – 6 of 6) sorted by relevance

/third_party/mesa3d/src/compiler/glsl/
Ds_expression.h89 class s_int : public s_number
92 s_int(int x) : val(x) { } in s_int() function
158 s_pattern(s_int *&s) : p_int(&s), type(INT) { } in s_pattern()
169 s_int **p_int;
Ds_expression.cpp87 expr = new(ctx) s_int(i); in read_atom()
150 void s_int::print() in print()
187 case INT: if (expr->is_int()) *p_int = (s_int *) expr; break; in match()
Dir_reader.cpp138 s_int *s_size; in read_type()
846 s_int *value = SX_AS_INT(expr); in read_constant()
1007 s_int *sparse = SX_AS_INT(s_sparse); in read_texture()
1054 s_int *si_offset = SX_AS_INT(s_offset); in read_texture()
1068 s_int *proj_as_int = SX_AS_INT(s_proj); in read_texture()
/third_party/python/Lib/ctypes/test/
Dtest_pep3118.py120 s_int = {2: 'h', 4: 'i', 8: 'q'}[sizeof(c_int)] variable
132 s_int = s_long variable
154 (c_int, "<" + s_int, (), c_int),
/third_party/python/Modules/_ctypes/
Dcfield.c1558 typedef struct { char c; int x; } s_int; typedef
1571 #define INT_ALIGN (sizeof(s_int) - sizeof(int))
/third_party/python/Lib/test/
Dtest_re.py1264 def s_int(scanner, token): return int(token) function
1269 (r"\d+", s_int),