/toolchain/binutils/binutils-2.25/gold/testsuite/ |
split_x86_64_1.s | 8 cmp %fs:0x70,%rsp 22 cmp %fs:0x70,%r10
|
split_x86_64_2.s | 8 cmp %fs:0x70,%rsp 22 cmp %fs:0x70,%r10
|
/external/v8/src/mips/ |
assembler-mips.cc | 979 FPURegister fs, 982 DCHECK(fd.is_valid() && fs.is_valid() && ft.is_valid()); 983 Instr instr = opcode | fmt | (ft.code() << kFtShift) | (fs.code() << kFsShift) 992 FPURegister fs, 995 DCHECK(fd.is_valid() && fr.is_valid() && fs.is_valid() && ft.is_valid()); 997 | (fs.code() << kFsShift) | (fd.code() << kFdShift) | func; 1005 FPURegister fs, 1008 DCHECK(fd.is_valid() && fs.is_valid() && rt.is_valid()); 1010 | (fs.code() << kFsShift) | (fd.code() << kFdShift) | func; 1018 FPUControlRegister fs, [all...] |
/art/compiler/utils/mips/ |
assembler_mips.cc | 163 void MipsAssembler::EmitFR(int opcode, int fmt, FRegister ft, FRegister fs, FRegister fd, 166 CHECK_NE(fs, kNoFRegister); 171 static_cast<uint32_t>(fs) << kFsShift | 844 void MipsAssembler::AddS(FRegister fd, FRegister fs, FRegister ft) { 845 EmitFR(0x11, 0x10, ft, fs, fd, 0x0); 848 void MipsAssembler::SubS(FRegister fd, FRegister fs, FRegister ft) { 849 EmitFR(0x11, 0x10, ft, fs, fd, 0x1); 852 void MipsAssembler::MulS(FRegister fd, FRegister fs, FRegister ft) { 853 EmitFR(0x11, 0x10, ft, fs, fd, 0x2); 856 void MipsAssembler::DivS(FRegister fd, FRegister fs, FRegister ft) [all...] |
/bionic/libc/arch-x86_64/bionic/ |
vfork.S | 37 mov %fs:0, %rax
|
/development/ndk/platforms/android-3/include/linux/ |
highmem.h | 15 #include <linux/fs.h>
|
/external/chromium-trace/catapult/telemetry/third_party/pyfakefs/pyfakefs/ |
example_test.py | 47 * Attribute `self.fs`, an instance of \ 75 `self.fs.CreateFile()` is convenient because it automatically creates 81 self.fs.CreateFile('/test/full.txt', 91 `self.fs.CreateFile()` is convenient because it automatically creates 98 self.fs.CreateFile('/test/empty.txt') 104 `self.fs.CreateDirectory()` creates directories. However, you might 109 self.fs.CreateDirectory('/test/dir1/dir2a') 123 `self.fs.CreateDirectory()` creates directories. However, you might 127 self.fs.CreateDirectory('/test/dir1/dir2a')
|
/external/clang/lib/Frontend/ |
ModuleDependencyCollector.cpp | 52 llvm::raw_fd_ostream OS(Dest, EC, llvm::sys::fs::F_Text); 65 fs::make_absolute(AbsoluteSrc); 77 if (std::error_code EC = fs::create_directories(path::parent_path(Dest), 80 if (std::error_code EC = fs::copy_file(AbsoluteSrc, Dest))
|
/external/clang/test/CodeGen/ |
ppc64-struct-onefloat.c | 6 typedef struct s4 { Sf fs; } SSf; member in struct:s4
|
/external/e2fsprogs/e2fsck/ |
iscan.c | 96 ext2_filsys fs; local 107 0, 0, unix_io_manager, &fs); 114 ehandler_init(fs->io); 116 retval = ext2fs_open_inode_scan(fs, inode_buffer_blocks, &scan);
|
/external/e2fsprogs/lib/ext2fs/ |
unlink.c | 70 errcode_t ext2fs_unlink(ext2_filsys fs, ext2_ino_t dir, 77 EXT2_CHECK_MAGIC(fs, EXT2_ET_MAGIC_EXT2FS_FILSYS); 82 if (!(fs->flags & EXT2_FLAG_RW)) 92 retval = ext2fs_dir_iterate(fs, dir, DIRENT_FLAG_INCLUDE_EMPTY,
|
/external/llvm/include/llvm/Support/ |
ToolOutputFile.h | 49 sys::fs::OpenFlags Flags);
|
/external/mesa3d/src/gallium/auxiliary/draw/ |
draw_fs.c | 63 draw->fs.fragment_shader = dfs;
|
/external/mesa3d/src/gallium/auxiliary/vl/ |
vl_matrix_filter.h | 45 void *vs, *fs; member in struct:vl_matrix_filter
|
vl_median_filter.h | 53 void *vs, *fs; member in struct:vl_median_filter
|
/external/opencv3/modules/imgproc/test/ |
test_watershed.cpp | 66 FileStorage fs(string(ts->get_data_path()) + "watershed/comp.xml", FileStorage::READ); 68 if (orig.empty() || !fs.isOpened()) 74 CvSeq* cnts = (CvSeq*)fs["contours"].readObj(); 91 fs.release();
|
/external/skia/gm/ |
fontmgr.cpp | 103 SkFontStyle fs; variable 104 set->getStyle(j, &fs, &sname); 105 sname.appendf(" [%d %d %d]", fs.weight(), fs.width(), fs.isItalic()); 111 x = drawCharacter(canvas, 0x5203, x, y, paint, fm, familyName.c_str(), &zh, 1, fs); 112 x = drawCharacter(canvas, 0x5203, x, y, paint, fm, familyName.c_str(), &ja, 1, fs); 114 x = drawCharacter(canvas, 0x1f601, x, y, paint, fm, familyName.c_str(), nullptr,0, fs); 153 SkFontStyle fs; local 154 fset->getStyle(j, &fs, &sname) [all...] |
/external/strace/ |
renameat.c | 20 #include <linux/fs.h>
|
/external/webrtc/webrtc/modules/audio_coding/neteq/ |
dtmf_tone_generator.h | 31 virtual int Init(int fs, int event, int attenuation);
|
/external/webrtc/webrtc/modules/audio_processing/ns/ |
noise_suppression.h | 44 * - fs : sampling frequency 52 int WebRtcNs_Init(NsHandle* NS_inst, uint32_t fs);
|
/libcore/ojluni/src/test/java/util/stream/test/org/openjdk/tests/java/util/stream/ |
FindAnyOpTest.java | 74 void exerciseStream(TestData.OfRef<Integer> data, Function<Stream<Integer>, Stream<Integer>> fs) { 75 Optional<Integer> or = withData(data).terminal(fs, s -> s.findAny()).equalator(VALID_ANSWER).exercise(); 78 Iterator<Integer> it = fs.apply(data.stream()).iterator(); 86 assertFalse(fs.apply(data.stream()).iterator().hasNext()); 98 void exerciseIntStream(TestData.OfInt data, Function<IntStream, IntStream> fs) { 99 OptionalInt or = withData(data).terminal(fs, s -> s.findAny()).equalator(INT_VALID_ANSWER).exercise(); 102 PrimitiveIterator.OfInt it = fs.apply(data.stream()).iterator(); 110 assertFalse(fs.apply(data.stream()).iterator().hasNext()); 122 void exerciseLongStream(TestData.OfLong data, Function<LongStream, LongStream> fs) { 123 OptionalLong or = withData(data).terminal(fs, s -> s.findAny()).equalator(LONG_VALID_ANSWER).exercise() [all...] |
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/runtime/cla/iface/ |
argument_factory.hpp | 40 virtual void argument_usage_info( format_stream& fs ) = 0; /// argument value format information
|
/prebuilts/ndk/current/platforms/android-12/arch-arm/usr/include/linux/ |
highmem.h | 15 #include <linux/fs.h>
|
/prebuilts/ndk/current/platforms/android-12/arch-mips/usr/include/linux/ |
highmem.h | 15 #include <linux/fs.h>
|
/prebuilts/ndk/current/platforms/android-12/arch-x86/usr/include/linux/ |
highmem.h | 15 #include <linux/fs.h>
|