Home
last modified time | relevance | path

Searched refs:T_FLOAT (Results 1 – 8 of 8) sorted by relevance

/third_party/ltp/tools/sparse/sparse-src/
Dsymbol.c875 #define T_FLOAT(R, S) T_FLOAT_(R, S, &max_fp_alignment) macro
915 { &float_ctype, T_FLOAT(-1, float) },
916 { &double_ctype, T_FLOAT( 0, double) },
917 { &ldouble_ctype, T_FLOAT( 1, longdouble) },
919 { &float32_ctype, T_FLOAT(-1, type32) },
920 { &float32x_ctype, T_FLOAT(-1, double) },
921 { &float64_ctype, T_FLOAT( 0, type64) },
922 { &float64x_ctype, T_FLOAT( 1, longdouble) },
/third_party/python/Python/
Dstructmember.c44 case T_FLOAT: in PyMember_GetOne()
236 case T_FLOAT:{ in PyMember_SetOne()
/third_party/python/Include/
Dstructmember.h30 #define T_FLOAT 3 macro
/third_party/mesa3d/src/freedreno/ir3/
Dir3_parser.y320 %token <flt> T_FLOAT
707 const_val: T_FLOAT { $$ = fui($1); }
1393 float: T_FLOAT { $$ = $1; }
1394 | '-' T_FLOAT { $$ = -$2; }
Dir3_lexer.l96 [0-9]+"."[0-9]+ ir3_yylval.flt = strtod(yytext, NULL); return T_FLOAT;
/third_party/protobuf/ruby/ext/google/protobuf_c/
Dstorage.c63 return (TYPE(value) == T_FLOAT || in is_ruby_num()
77 if (TYPE(val) == T_FLOAT) { in native_slot_check_int_range_precision()
/third_party/python/Doc/c-api/
Dstructures.rst426 T_FLOAT float
/third_party/python/Modules/
D_testcapimodule.c5941 {"T_FLOAT", T_FLOAT, offsetof(test_structmembers, structmembers.float_member), 0, NULL},