Home
last modified time | relevance | path

Searched refs:lf (Results 1 – 25 of 46) sorted by relevance

12

/llvm-project-15.0.7/libc/src/__support/File/
H A Dlinux_file.cpp55 auto *lf = reinterpret_cast<LinuxFile *>(f); in write_func() local
56 long ret = __llvm_libc::syscall(SYS_write, lf->get_fd(), data, size); in write_func()
65 auto *lf = reinterpret_cast<LinuxFile *>(f); in read_func() local
66 long ret = __llvm_libc::syscall(SYS_read, lf->get_fd(), buf, size); in read_func()
75 auto *lf = reinterpret_cast<LinuxFile *>(f); in seek_func() local
77 long ret = __llvm_libc::syscall(SYS_lseek, lf->get_fd(), offset, whence); in seek_func()
80 long ret = __llvm_libc::syscall(SYS__lseek, lf->get_fd(), offset >> 32, in seek_func()
94 auto *lf = reinterpret_cast<LinuxFile *>(f); in close_func() local
95 long ret = __llvm_libc::syscall(SYS_close, lf->get_fd()); in close_func()
104 auto *lf = reinterpret_cast<LinuxFile *>(f); in flush_func() local
[all …]
/llvm-project-15.0.7/clang/test/Frontend/
H A Dfixed_point_shift.c11 long _Fract lf; variable
110 lf = lf << i; in sleft_lflfi()
314 lf = lf >> i; in sright_lflfi()
H A Dfixed_point_add.c14 long _Fract lf; variable
115 a = a + lf; in sadd_aalf()
401 lf = lf + ui; in int_lflfui()
H A Dfixed_point_sub.c14 long _Fract lf; variable
115 a = a - lf; in ssub_aalf()
401 lf = lf - ui; in int_lflfui()
H A Dfixed_point_div.c14 long _Fract lf; variable
115 a = a / lf; in sdiv_aalf()
441 lf = lf / ui; in int_lflfui()
H A Dfixed_point_mul.c14 long _Fract lf; variable
115 a = a * lf; in smul_aalf()
441 lf = lf * ui; in int_lflfui()
H A Dfixed_point_conversions_half.c6 long _Fract lf; variable
48 lf = h; in half_fix2()
240 h = lf; in fix_half2()
H A Dfixed_point_unary.c7 long _Fract lf; variable
51 lf++; in inc_lf()
232 lf--; in dec_lf()
H A Dfixed_point_conversions.c15 long _Fract lf; variable
761 lf = fl; in float_fix5()
862 fl = lf; in fix_float5()
/llvm-project-15.0.7/clang/test/CodeGenCXX/
H A Dibm128-declarations.cpp69 __ibm128 lf; in main() local
70 CTest ct(lf); in main()
72 __ibm128 lfi = tf.mem2 + func1(lf) - CTest::func3(lf); in main()
/llvm-project-15.0.7/flang/include/flang/Parser/
H A Dparse-state.h148 void Nonstandard(LanguageFeature lf, const MessageFixedText &msg) { in Nonstandard() argument
149 Nonstandard(p_, lf, msg); in Nonstandard()
152 CharBlock range, LanguageFeature lf, const MessageFixedText &msg) { in Nonstandard() argument
154 if (userState_ && userState_->features().ShouldWarn(lf)) { in Nonstandard()
158 bool IsNonstandardOk(LanguageFeature lf, const MessageFixedText &msg) { in IsNonstandardOk() argument
159 if (userState_ && !userState_->features().IsEnabled(lf)) { in IsNonstandardOk()
162 Nonstandard(lf, msg); in IsNonstandardOk()
/llvm-project-15.0.7/clang/test/OpenMP/
H A Dnvptx_asm_delayed_diags.c23 : [ lf ] "mx"(0), [ li ] "mr"(0), [ xx ] "x"((double)(0))); in bar()
38 : [ lf ] "mx"(0), [ li ] "mr"(0), [ xx ] "x"((double)(0))); in foo()
53 : [ lf ] "mx"(0), [ li ] "mr"(0), [ xx ] "x"((double)(0))); in t1()
/llvm-project-15.0.7/llvm/
H A D.gitattributes25 test/tools/llvm-strings/radix.test text eol=lf
26 test/tools/split-file/basic.test text eol=lf
27 test/tools/split-file/Inputs/basic-*.txt eol=lf
/llvm-project-15.0.7/clang/test/FixIt/
H A Dformat.m11 …printf("%lf", x); // expected-warning{{format specifies type 'double' but the argument has type 'i…
17 …NSLog(@"%lf", x); // expected-warning{{format specifies type 'double' but the argument has type 'i…
27 …printf("%lf", x); // expected-warning{{format specifies type 'double' but the argument has type 'c…
33 …NSLog(@"%lf", x); // expected-warning{{format specifies type 'double' but the argument has type 'c…
43 …NSLog(@"%lf", x); // expected-warning{{format specifies type 'double' but the argument has type 'i…
54 …NSLog(@"%lf", x); // expected-warning{{format specifies type 'double' but the argument has type 'C…
65 …NSLog(@"%lf", x); // expected-warning{{format specifies type 'double' but the argument has type 'b…
75 …NSLog(@"%lf", x); // expected-warning{{format specifies type 'double' but the argument has type 'C…
102 …NSLog(@"%lf", c); // expected-warning{{format specifies type 'double' but the argument has type 'c…
154 …NSLog(@"%lf", 'a'); // expected-warning{{format specifies type 'double' but the argument has type …
[all …]
H A Dformat-no-fixit.m14 …printf("%lf", x); // expected-warning{{format specifies type 'double' but the argument has type 'i…
28 …NSLog(@"%lf", x); // expected-warning{{format specifies type 'double' but the argument has type 'C…
/llvm-project-15.0.7/compiler-rt/lib/asan/
H A Dasan_flags.cpp73 __lsan::Flags *lf = __lsan::flags(); in InitializeFlags() local
74 lf->SetDefaults(); in InitializeFlags()
77 __lsan::RegisterLsanFlags(&lsan_parser, lf); in InitializeFlags()
/llvm-project-15.0.7/polly/
H A D.gitattributes2 * text eol=lf
/llvm-project-15.0.7/llvm/test/CodeGen/AArch64/
H A Darm64-2012-06-06-FPToUI.ll4 @.str = private unnamed_addr constant [9 x i8] c"%lf %lu\0A\00", align 1
5 @.str1 = private unnamed_addr constant [8 x i8] c"%lf %u\0A\00", align 1
/llvm-project-15.0.7/llvm/test/CodeGen/Mips/
H A Dmicromips-b-range.ll66 br i1 %2, label %la, label %lf
86 lf:
/llvm-project-15.0.7/clang/test/SemaCUDA/
H A Dasm_delayed_diags.cu19 : [ lf ] "mx"(0), [ li ] "mr"(0), [ xx ] "x"((double)(0))); in t1()
/llvm-project-15.0.7/clang/test/Analysis/
H A Dstack-addr-ps.cpp77 void *lf() { in lf() function
/llvm-project-15.0.7/llvm/test/Bindings/OCaml/
H A Dcore.ml563 let lf s x = s ^ "->" ^ value_name x in
564 insist ("->One->Two" = fold_left_globals lf "" m);
590 let lf s u = value_name (user u) ^ "->" ^ s in
591 insist ("v2->v3->" = fold_left_uses lf "" v1);
595 let lf s u = value_name (used_value u) ^ "->" ^ s in
596 insist ("v1->v1->" = fold_left_uses lf "" v1);
727 let lf s x = s ^ "->" ^ value_name x in
763 let lf s x = s ^ "->" ^ value_name x in
764 insist ("->One->Two" = fold_left_params lf "" f);
838 insist ("->One->Two" = fold_left_blocks lf "" f);
[all …]
/llvm-project-15.0.7/lld/test/ELF/
H A Demit-relocs-mergeable-i386.s6 ## Check lf we produce proper relocations when doing merging of SHF_MERGE sections.
/llvm-project-15.0.7/lldb/third_party/Python/module/pexpect-4.6/pexpect/
H A Dscreen.py176 def lf (self): member in screen
192 self.lf ()
/llvm-project-15.0.7/clang/test/CodeGen/
H A Dasm.c60 …__asm__("PR3908 %[lf] %[xx] %[li] %[r]" : [r] "+r" (r) : [lf] "mx" (0), [li] "mr" (0), [xx] "x" ((… in t10()

12