OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:t_tspec
(Results
1 - 15
of
15
) sorted by relevancy
/src/usr.bin/xlint/lint1/
ckctype.c
103
if (on->tn_type->
t_tspec
== UCHAR)
105
if (on->tn_type->
t_tspec
== UCHAR)
115
if (cn->tn_type->
t_tspec
!= UCHAR && cn->tn_type->
t_tspec
!= INT) {
ckbool.c
125
tspec_t lt = ln->tn_type->
t_tspec
;
129
rt = rn->tn_type->
t_tspec
;
193
return tn->tn_type->
t_tspec
== BOOL
195
|| (is_do_while && is_int_constant_zero(tn, tn->tn_type->
t_tspec
))
196
|| (tn->tn_sys && is_scalar(tn->tn_type->
t_tspec
));
tree.c
146
lint_assert(is_integer(tp->
t_tspec
));
149
: size_in_bits(tp->
t_tspec
);
213
return !is_uinteger(tp->
t_tspec
) && ic.bclr >> 63 == 0;
220
return !is_uinteger(tp->
t_tspec
) && (a.bclr & b.bclr) >> 63 == 0;
230
if (is_uinteger(tp->
t_tspec
)) {
367
c.umax = is_uinteger(tp->
t_tspec
) ? ui_max_value(tp)
479
lint_assert(is_integer(tp->
t_tspec
));
497
bool new_unsigned = is_uinteger(ntp->
t_tspec
);
498
bool old_unsigned = is_uinteger(otp->
t_tspec
);
514
lint_assert(is_integer(tn->tn_type->
t_tspec
));
[
all
...]
decl.c
101
typetab[i].
t_tspec
= (tspec_t)i;
172
tspec_t t = tp->
t_tspec
;
248
tspec_t t2 = td->
t_tspec
;
330
tspec_t t = tp->
t_tspec
;
418
tspec_t t = tp->
t_tspec
;
449
if (!is_struct_or_union(tp->
t_tspec
)) {
466
if (tp->
t_tspec
== STRUCT)
478
if (dcs->d_type != NULL && is_struct_or_union(dcs->d_type->
t_tspec
))
790
if (align > 0 && dcs->d_type->
t_tspec
== STRUCT) {
819
while (tp->
t_tspec
== ARRAY)
[
all
...]
init.c
160
if (!(ltp != NULL && ltp->
t_tspec
== ARRAY && rn->tn_op == STRING))
163
tspec_t lst = ltp->t_subt->
t_tspec
;
164
tspec_t rst = rn->tn_type->t_subt->
t_tspec
;
176
&& !is_struct_or_union(m->s_type->
t_tspec
))
185
lint_assert(is_struct_or_union(tp->
t_tspec
));
239
!is_scalar(sym->s_type->
t_tspec
)) {
269
tspec_t lt = ln->tn_type->
t_tspec
;
270
tspec_t rt = rn->tn_type->
t_tspec
;
284
switch (tp->
t_tspec
) {
393
if (is_struct_or_union(tp->
t_tspec
)) {
[
all
...]
func.c
231
if (fsym->s_type->t_subt->
t_tspec
!= VOID &&
327
if (funcsym->s_type->t_subt->
t_tspec
== VOID)
479
if (!is_integer(tn->tn_type->
t_tspec
)) {
496
tspec_t t = tn->tn_type->
t_tspec
;
553
if (tn != NULL && !is_scalar(tn->tn_type->
t_tspec
)) {
566
: tspec_name(tn->tn_type->
t_tspec
));
617
if (tn != NULL && !is_integer(tn->tn_type->
t_tspec
)) {
623
tspec_t t = tn->tn_type->
t_tspec
;
636
tp->
t_tspec
= tn->tn_type->
t_tspec
;
[
all
...]
emit1.c
104
if ((ts = tp->
t_tspec
) == INT && tp->t_is_enum)
188
if (sc != EXTERN && !(sc == STATIC && sym->s_type->
t_tspec
== FUNC))
343
tspec_t t = arg->tn_type->
t_tspec
;
debug.c
160
if (is_struct_or_union(tp->
t_tspec
)) {
226
if (is_floating(tn->tn_type->
t_tspec
))
228
else if (is_uinteger(tn->tn_type->
t_tspec
))
231
else if (is_integer(tn->tn_type->
t_tspec
))
235
lint_assert(tn->tn_type->
t_tspec
== BOOL);
437
if (sym->s_type != NULL && sym->s_type->
t_tspec
== BOOL)
464
if (sym->s_type->
t_tspec
== ARRAY
lint1.h
134
tspec_t
t_tspec
; /* type specifier */
member in struct:lint1_type
145
* Either the type is currently an enum (having
t_tspec
ENUM), or it
672
lint_assert(tn->tn_type->
t_tspec
== tn->u.value.v_tspec);
cgram.y
1136
if ($1->s_type->
t_tspec
!= AUTO_TYPE)
1271
if (is_struct_or_union(dcs->d_type->
t_tspec
))
1519
tspec_t t = $$->s_type->
t_tspec
;
1522
tp->
t_tspec
=
2423
if ($1->s_type->
t_tspec
!= FUNC) {
/src/usr.bin/xlint/lint2/
chk.c
112
TP(sym->s_type)->
t_tspec
== FUNC &&
189
if (TP(sym->s_type)->
t_tspec
== FUNC)
254
t1 = (tp1 = TP(def->s_type)->t_subt)->
t_tspec
;
310
bool is_func = tp1->
t_tspec
== FUNC && tp2->
t_tspec
== FUNC;
358
if ((tp1 = TP(def->s_type))->
t_tspec
!= FUNC)
362
if ((tp1 = TP(decl->s_type))->
t_tspec
!= FUNC)
369
if ((tp1 = TP(call1->f_type))->
t_tspec
!= FUNC)
376
if ((tp2 = TP(call->f_type))->
t_tspec
!= FUNC)
496
t1 = arg1->
t_tspec
;
[
all
...]
emit2.c
57
tspec_t ts = tp->
t_tspec
;
133
if (TP(sym->s_type)->
t_tspec
== FUNC) {
lint2.h
38
tspec_t
t_tspec
; /* type specifier */
member in struct:lint2_type
read.c
683
tp->
t_tspec
= parse_tspec(&cp, c, &osdef);
685
switch (tp->
t_tspec
) {
712
tp->
t_tspec
= INT;
/src/usr.bin/xlint/common/
tyname.c
258
if ((t = tp->
t_tspec
) == INT && tp->t_is_enum)
Completed in 23 milliseconds
Indexes created Fri Oct 03 02:09:57 GMT 2025