HomeSort by relevance Sort by last modified time
    Searched refs:fs (Results 551 - 575 of 697) sorted by null

<<2122232425262728

  /external/v8/src/mips/
macro-assembler-mips.h 715 void Cvt_d_uw(FPURegister fd, FPURegister fs, FPURegister scratch);
719 void Trunc_uw_d(FPURegister fd, FPURegister fs, FPURegister scratch);
722 void Trunc_w_d(FPURegister fd, FPURegister fs);
723 void Round_w_d(FPURegister fd, FPURegister fs);
724 void Floor_w_d(FPURegister fd, FPURegister fs);
725 void Ceil_w_d(FPURegister fd, FPURegister fs);
    [all...]
macro-assembler-mips.cc 975 FPURegister fs,
977 // Move the data from fs to t8.
978 mfc1(t8, fs);
1022 FPURegister fs,
1024 Trunc_uw_d(fs, t8, scratch);
1028 void MacroAssembler::Trunc_w_d(FPURegister fd, FPURegister fs) {
1029 if (kArchVariant == kLoongson && fd.is(fs)) {
1030 mfc1(t8, FPURegister::from_code(fs.code() + 1));
1031 trunc_w_d(fd, fs);
1032 mtc1(t8, FPURegister::from_code(fs.code() + 1))
    [all...]
  /external/chromium/build/
install-build-deps.sh 124 sudo ln -fs /usr/local/gold/bin/ld /usr/bin/ld.gold
125 sudo ln -fs /usr/bin/ld.gold /usr/bin/ld
  /external/e2fsprogs/e2fsck/
dirinfo.c 62 uuid_unparse(ctx->fs->super->s_uuid, uuid);
84 retval = ext2fs_get_num_dirs(ctx->fs, &num_dirs);
  /external/llvm/test/MC/X86/
x86-32.s 519 push %fs
520 // CHECK: pushl %fs
538 pushw %fs
539 // CHECK: pushw %fs
  /external/valgrind/main/coregrind/m_sigframe/
sigframe-x86-linux.c 294 //:: struct i387_fsave_struct *fs = &regs->m_sse.fsave;
296 //:: fs->status = fs->swd;
297 //:: VG_(memcpy)(buf, fs, sizeof(*fs));
370 SC2(fs,FS);
668 tst->arch.vex.guest_FS = sc->fs;
  /external/webkit/Tools/Scripts/webkitpy/common/system/
executive.py 184 def interpreter_for_script(script_path, fs=FileSystem()):
185 lines = fs.read_text_file(script_path).splitlines()
382 _log.debug('"%s" took %.2fs' % (self._command_for_printing(args), time.time() - start_time))
filesystem.py 92 def filter_all(fs, dirpath, basename):
  /device/samsung/tuna/recovery/
bootloader.c 19 #include <linux/fs.h>
  /external/grub/stage2/
start_eltorito.S 86 mov %ax, %fs
  /external/jdiff/src/jdiff/
RootDocToXML.java 399 String fs = null; local
401 fs = text;
403 fs = text.substring(0, idx+1);
404 String st = API.hideHTMLTags(fs);
    [all...]
  /external/kernel-headers/original/linux/nfsd/
nfsfh.h 21 # include <linux/fs.h>
  /external/kernel-headers/original/linux/
proc_fs.h 5 #include <linux/fs.h>
wanrouter.h 455 #include <linux/fs.h> /* support for device drivers */
  /external/llvm/tools/llvm-config/
llvm-config.cpp 180 sys::fs::make_absolute(CurrentPath);
  /external/llvm/tools/llvm-size/
llvm-size.cpp 240 if (sys::fs::exists(file, exists) || !exists) {
  /external/qemu/android/config/linux-x86/asm/
kvm.h 119 struct kvm_segment cs, ds, es, fs, gs, ss; member in struct:kvm_sregs
  /external/qemu/android/config/linux-x86_64/asm/
kvm.h 119 struct kvm_segment cs, ds, es, fs, gs, ss; member in struct:kvm_sregs
  /external/qemu/target-i386/
svm.h 177 struct vmcb_seg fs; member in struct:vmcb_save_area
  /external/strace/
block.c 33 #include <linux/fs.h>
  /frameworks/compile/mclinker/lib/CodeGen/
SectLinker.cpp 238 sys::fs::Path* path = 0;
  /system/extras/tests/directiotest/
directiotest.c 42 #include <linux/fs.h>
  /external/mdnsresponder/mDNSShared/
dnssd_clientstub.c 252 fd_set *fs; local
257 fs = &readfds;
258 FD_ZERO(fs);
268 fs = (fd_set *)calloc(nints, sizeof(int));
269 if (fs == NULL) { syslog(LOG_WARNING, "dnssd_clientstub more_bytes: malloc failed"); return 0; }
271 FD_SET(sd, fs);
272 ret = select((int)sd+1, fs, (fd_set*)NULL, (fd_set*)NULL, &tv);
273 if (fs != &readfds) free(fs);
    [all...]
  /external/guava/guava-tests/lib/
libtruth-gwt.jar 
  /external/llvm/tools/llvm-ar/
llvm-ar.cpp 315 if (sys::fs::exists(aPath.str(), Exists) || !Exists)
721 if (llvm::sys::fs::exists(ArchivePath.str(), Exists) || !Exists) {

Completed in 1456 milliseconds

<<2122232425262728