HomeSort by relevance Sort by last modified time
    Searched refs:fs (Results 1676 - 1700 of 2103) sorted by null

<<61626364656667686970>>

  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/i386/
intel.s 335 push fs
336 pop fs
551 pushw fs
552 popw fs
  /toolchain/binutils/binutils-2.25/opcodes/
i386-opc.h 890 extern const seg_entry fs;
  /external/clang/lib/Frontend/
SerializedDiagnosticPrinter.cpp 780 if (!llvm::sys::fs::remove(State->OutputFile))
804 if (llvm::sys::fs::exists(State->OutputFile))
811 EC, llvm::sys::fs::F_None);
    [all...]
  /external/compiler-rt/lib/tsan/rtl/
tsan_rtl.h 741 void ALWAYS_INLINE TraceAddEvent(ThreadState *thr, FastState fs,
749 u64 pos = fs.GetTracePos();
757 Event *trace = (Event*)GetThreadTrace(fs.tid());
  /external/e2fsprogs/e2fsck/
problem.c 476 /* Block bitmap conflicts with some other fs block */
481 /* Inode bitmap conflicts with some other fs block */
486 /* Inode table conflicts with some other fs block */
516 /* Block number overlaps fs metadata */
1833 ext2_filsys fs = ctx->fs; local
    [all...]
  /external/elfutils/libcpu/
i386_disasm.c 125 prefbit (fs),
157 newpref (fs),
177 newpref (fs),
543 ADD_STRING ("fs");
  /external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
ICUJDKCompare.java 771 private Set getFieldSet(Field[] fs) {
773 for (int i = 0; i < fs.length; ++i) {
774 set.add(toString(fs[i]));
  /external/testng/doc/
prettify.js 995 var fs = tokens[firstPlain].token;
996 var fc = decodeHelper.decode(fs, 0);
1015 tokensOut.push(new PR_Token(fs.substring(0, fpos), PR_ATTRIB_VALUE));
1017 tokensOut.push(new PR_Token(fs.substring(fpos, lpos), PR_PLAIN));
1019 tokensOut.push(new PR_Token(fs.substring(fpos, fs.length), PR_PLAIN));
    [all...]
  /external/webrtc/webrtc/base/
network.cc 636 FileStream fs; local
637 if (!fs.Open("/proc/net/route", "r", NULL)) {
643 while (fs.ReadLine(&line) == SR_SUCCESS) {
  /frameworks/av/media/libstagefright/codecs/aacenc/src/
tns.c 95 Word32 fs, /*!< Sampling frequency in Hertz */
103 shift = norm_l(fs);
104 lineNumber = (extract_l(fixmul((bandStartOffset[numOfBands] << 2),Div_32(freq << shift,fs << shift))) + 1) >> 1;
106 /* freq > fs/2 */
  /prebuilts/gdb/darwin-x86/lib/python2.7/logging/
config.py 116 fs = cp.get(sectname, "format", 1)
118 fs = None
128 f = c(fs, dfs)
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/logging/
config.py 116 fs = cp.get(sectname, "format", 1)
118 fs = None
128 f = c(fs, dfs)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/logging/
config.py 116 fs = cp.get(sectname, "format", 1)
118 fs = None
128 f = c(fs, dfs)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/logging/
config.py 116 fs = cp.get(sectname, "format", 1)
118 fs = None
128 f = c(fs, dfs)
    [all...]
  /external/opencv3/modules/core/test/
test_mat.cpp 514 FileStorage fs( "PCA_store.yml", FileStorage::WRITE );
515 rPCA.write( fs );
516 fs.release();
519 fs.open( "PCA_store.yml", FileStorage::READ );
520 lPCA.read( fs.root() );
    [all...]
  /hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/codecs/h264/parser/
h264parse_dpb.c 53 p_dpb->fs[i].fs_idc = MPD_DPB_FS_NULL_IDC;
155 // Set active fs
160 active_fs = &p_dpb->fs[index];
790 ///// Generate frame list from sorted fs
910 temp_fs = &p_dpb->fs[p_dpb->fs_ref_idc[idx]];
956 temp_fs = &p_dpb->fs[p_dpb->fs_ltref_idc[idx]];
    [all...]
  /build/core/
java.mk 161 ## .fs files: Filterscript sources to .java files and .bc files
163 renderscript_sources := $(filter %.rs %.fs,$(LOCAL_SRC_FILES))
224 bc_files := $(patsubst %.fs,%.bc, $(patsubst %.rs,%.bc, $(notdir $(renderscript_sources))))
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-junit.jar 
  /external/opencv3/modules/imgproc/test/
test_convhull.cpp 193 int read_params( CvFileStorage* fs );
251 int CV_BaseShapeDescrTest::read_params( CvFileStorage* fs )
253 int code = cvtest::BaseTest::read_params( fs );
257 test_case_count = cvReadInt( find_param( fs, "struct_count" ), test_case_count );
258 min_log_size = cvReadInt( find_param( fs, "min_log_size" ), min_log_size );
259 max_log_size = cvReadInt( find_param( fs, "max_log_size" ), max_log_size );
    [all...]
  /external/toybox/toys/pending/
dhcpd.c 14 usage: dhcpd [-46fS] [-i IFACE] [-P N] [CONFFILE]
722 FILE *fs = NULL; local
730 if (!(fs = fopen(config_file, "r"))) perror_msg("%s", config_file);
731 for (len = 0, linelen = 0; fs;) {
732 len = getline(&confline_temp, (size_t*) &linelen, fs);
768 if (fs) fclose(fs);
    [all...]
  /external/webrtc/talk/media/base/
videoframe_unittest.h 162 rtc::scoped_ptr<rtc::FileStream> fs(
164 if (!fs.get()) {
174 rtc::StreamResult res = Flow(fs.get(), buf, sizeof(buf), ms.get());
198 rtc::scoped_ptr<rtc::FileStream> fs(
200 if (!fs.get()) {
204 return (fs->Write(buffer, size, NULL, NULL) == rtc::SR_SUCCESS);
    [all...]
  /prebuilts/devtools/tools/lib/
ant-tasks.jar 
  /prebuilts/go/darwin-x86/src/net/http/
fs.go 348 func serveFile(w ResponseWriter, r *Request, fs FileSystem, name string, redirect bool) {
359 f, err := fs.Open(name)
394 ff, err := fs.Open(index)
  /prebuilts/go/darwin-x86/src/syscall/
mksyscall_windows.go 600 // ParseFiles parses files listed in fs and extracts all syscall
603 func ParseFiles(fs []string) (*Source, error) {
608 for _, file := range fs {
  /prebuilts/go/linux-x86/src/net/http/
fs.go 348 func serveFile(w ResponseWriter, r *Request, fs FileSystem, name string, redirect bool) {
359 f, err := fs.Open(name)
394 ff, err := fs.Open(index)

Completed in 1127 milliseconds

<<61626364656667686970>>