HomeSort by relevance Sort by last modified time
    Searched defs:fs (Results 251 - 275 of 337) sorted by null

<<11121314

  /external/e2fsprogs/misc/
fsck.c 15 * if it should ignore the fs type. This way more fsck programs
122 static const char *fsck_prefix_path = "/sbin:/sbin/fs.d:/sbin/fs:/etc/fs:/etc";
246 struct fs_info *fs; local
248 if (!(fs = malloc(sizeof(struct fs_info))))
251 fs->device = string_copy(device);
252 fs->mountpt = string_copy(mntpnt);
253 fs->type = string_copy(type);
254 fs->opts = string_copy(opts ? opts : "")
274 struct fs_info *fs; local
339 struct fs_info *fs; local
382 struct fs_info *fs; local
959 struct fs_info *fs = NULL; local
1258 struct fs_info *fs; local
    [all...]
  /external/e2fsprogs/resize/
resize2fs.c 43 static void fix_uninit_block_bitmaps(ext2_filsys fs);
50 static errcode_t fix_resize_inode(ext2_filsys fs);
51 static errcode_t ext2fs_calculate_summary_stats(ext2_filsys fs);
52 static errcode_t fix_sb_journal_backup(ext2_filsys fs);
53 static errcode_t mark_table_blocks(ext2_filsys fs,
59 #define IS_BLOCK_BM(fs, i, blk) ((blk) == ext2fs_block_bitmap_loc((fs),(i)))
60 #define IS_INODE_BM(fs, i, blk) ((blk) == ext2fs_inode_bitmap_loc((fs),(i)))
62 #define IS_INODE_TB(fs, i, blk) (((blk) >= ext2fs_inode_table_loc((fs), (i))) &&
617 ext2_filsys fs; local
784 ext2_filsys fs = rfs->new_fs; local
860 ext2_filsys fs, old_fs; local
1160 ext2_filsys fs = rfs->new_fs; local
1214 ext2_filsys fs = rfs->new_fs; local
1720 ext2_filsys fs = rfs->new_fs; local
    [all...]
  /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/libopus/celt/
bands.c 722 int fs; local
723 fs=ec_decode(ec,ft);
724 if (fs<(x0+1)*p0)
725 x=fs/p0;
727 x=x0+1+(fs-(x0+1)*p0);
738 int fs=1, ft; local
744 fs = itheta <= (qn>>1) ? itheta + 1 : qn + 1 - itheta;
748 ec_encode(ec, fl, fl+fs, ft);
758 fs = itheta + 1;
765 fs = qn + 1 - itheta
    [all...]
  /external/llvm/include/llvm/Support/
FileSystem.h 10 // This file declares the llvm::sys::fs namespace. It is designed after
50 namespace fs { namespace in namespace:llvm::sys
914 } // end namespace fs
  /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/mesa3d/src/gallium/auxiliary/draw/
draw_private.h 284 } fs; member in struct:draw_context
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_state_setup.c 702 util_snprintf(func_name, sizeof(func_name), "fs%u_setup%u",
800 struct lp_fragment_shader *fs = lp->fs; local
805 key->num_inputs = fs->info.base.num_inputs;
824 memcpy(key->inputs, fs->inputs, key->num_inputs * sizeof key->inputs[0]);
  /external/mesa3d/src/gallium/drivers/r300/
r300_emit.c 191 struct r300_fragment_shader *fs = r300_fs(r300); local
194 WRITE_CS_TABLE(fs->shader->cb_code, fs->shader->cb_code_size);
199 struct r300_fragment_shader *fs = r300_fs(r300); local
201 unsigned count = fs->shader->externals_count;
227 struct r300_fragment_shader *fs = r300_fs(r300); local
228 struct rc_constant_list *constants = &fs->shader->code.constants;
230 unsigned count = fs->shader->rc_state_count;
231 unsigned first = fs->shader->externals_count;
256 struct r300_fragment_shader *fs = r300_fs(r300) local
264 struct r300_fragment_shader *fs = r300_fs(r300); local
288 struct r300_fragment_shader *fs = r300_fs(r300); local
    [all...]
r300_state.c 993 struct r300_fragment_shader* fs = NULL; local
1006 struct r300_fragment_shader* fs = r300_fs(r300); local
1029 struct r300_fragment_shader* fs = (struct r300_fragment_shader*)shader; local
1045 struct r300_fragment_shader* fs = (struct r300_fragment_shader*)shader; local
    [all...]
  /external/mesa3d/src/gallium/state_trackers/vega/
renderer.c 307 void *fs = NULL; local
311 fs = util_make_fragment_passthrough_shader(r->pipe);
314 fs = util_make_fragment_tex_shader(r->pipe,
318 fs = create_scissor_fs(r->pipe);
321 fs = create_white_fs(r->pipe);
324 assert(!"Unknown renderer fs id");
328 r->cached_fs[id] = fs;
453 void *fs,
460 cso_set_fragment_shader_handle(renderer->cso, fs);
468 /* upload fs constant buffer *
    [all...]
  /external/opencv/ml/src/
ml_inner_functions.cpp 63 CvFileStorage* fs = 0; local
69 CV_CALL( fs = cvOpenFileStorage( filename, 0, CV_STORAGE_WRITE ));
70 if( !fs )
73 write( fs, name ? name : default_model_name );
77 cvReleaseFileStorage( &fs );
83 CvFileStorage* fs = 0; local
91 CV_CALL( fs = cvOpenFileStorage( filename, 0, CV_STORAGE_READ ));
92 if( !fs )
96 model_node = cvGetFileNodeByName( fs, 0, name );
99 CvFileNode* root = cvGetRootFileNode( fs );
    [all...]
  /art/compiler/utils/x86/
assembler_x86.cc 1227 X86Assembler* X86Assembler::fs() { function in class:art::x86::X86Assembler
1228 // TODO: fs is a prefix and not an instruction
1235 // TODO: fs is a prefix and not an instruction
    [all...]
  /bionic/libc/kernel/uapi/asm-x86/asm/
kvm.h 161 struct kvm_segment cs, ds, es, fs, gs, ss; member in struct:kvm_sregs
  /development/ndk/platforms/android-9/arch-x86/include/asm/
processor_32.h 191 unsigned short fs, __fsh; member in struct:i386_hw_tss
216 unsigned long fs; member in struct:thread_struct
232 #define INIT_THREAD { .esp0 = sizeof(init_stack) + (long)&init_stack, .vm86_info = NULL, .sysenter_cs = __KERNEL_CS, .io_bitmap_ptr = NULL, .fs = __KERNEL_PERCPU, }
  /development/ndk/platforms/android-L/arch-x86/include/asm/
kvm.h 161 struct kvm_segment cs, ds, es, fs, gs, ss; member in struct:kvm_sregs
  /development/ndk/platforms/android-L/arch-x86_64/include/asm/
kvm.h 161 struct kvm_segment cs, ds, es, fs, gs, ss; member in struct:kvm_sregs
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/
cpp.py 4039 fs = None variable in class:CppChecker
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/i915/
i915_context.h 237 struct i915_fragment_shader *fs; member in struct:i915_context
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
svga_context.h 205 struct svga_fragment_shader *fs; member in struct:svga_state
280 struct svga_shader_result *fs; member in struct:svga_hw_draw_state
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/dxgi/src/
dxgi_native.cpp 735 void* fs; member in struct:dxgi_blitter
792 fs = util_make_fragment_tex_shader(pipe, normalized ? TGSI_TEXTURE_2D : TGSI_TEXTURE_RECT, TGSI_INTERPOLATE_LINEAR);
846 pipe->bind_fs_state(pipe, fs);
866 pipe->delete_fs_state(pipe, fs);
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
ff_fragment_shader.cpp 1356 struct gl_shader *const fs = local
    [all...]
  /external/chromium_org/third_party/skia/third_party/lua/src/
lparser.c 62 lua_assert(ls->fs != NULL || ls->t.token == TK_EOS);
83 static l_noret errorlimit (FuncState *fs, int limit, const char *what) {
84 lua_State *L = fs->ls->L;
86 int line = fs->f->linedefined;
92 luaX_syntaxerror(fs->ls, msg);
96 static void checklimit (FuncState *fs, int v, int l, const char *what) {
97 if (v > l) errorlimit(fs, l, what);
156 init_exp(e, VK, luaK_stringK(ls->fs, s));
166 FuncState *fs = ls->fs; local
179 FuncState *fs = ls->fs; local
206 FuncState *fs = ls->fs; local
299 FuncState *fs = ls->fs; local
311 FuncState *fs = ls->fs; local
342 FuncState *fs = ls->fs; local
501 FuncState *fs = ls->fs; local
521 FuncState *fs = ls->fs->prev; local
557 FuncState *fs = ls->fs; local
618 FuncState *fs = ls->fs; local
654 FuncState *fs = ls->fs; local
733 FuncState *fs = ls->fs; local
761 FuncState *fs = ls->fs; local
824 FuncState *fs = ls->fs; local
902 FuncState *fs = ls->fs; local
963 FuncState *fs = ls->fs; local
1084 FuncState *fs = ls->fs; local
1109 FuncState *fs = ls->fs; local
1217 FuncState *fs = ls->fs; local
1235 FuncState *fs = ls->fs; local
1255 FuncState *fs = ls->fs; local
1286 FuncState *fs = ls->fs; local
1311 FuncState *fs = ls->fs; local
1333 FuncState *fs = ls->fs; local
1358 FuncState *fs = ls->fs; local
1377 FuncState *fs = ls->fs; local
1411 FuncState *fs = ls->fs; local
1425 FuncState *fs = ls->fs; local
1482 FuncState *fs = ls->fs; local
1498 FuncState *fs = ls->fs; local
    [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_processing/test/
audio_processing_unittest.cc 764 int fs[] = {8000, 16000, 32000}; local
765 for (size_t i = 0; i < sizeof(fs) / sizeof(*fs); i++) {
766 SetContainerFormat(fs[i], 2, frame_, &float_cb_);
768 EXPECT_EQ(fs[i], apm_->input_sample_rate_hz());
    [all...]
  /external/chromium_org/v8/src/mips/
simulator-mips.cc 2217 double ft, fs; local
2480 double fr, ft, fs; local
    [all...]

Completed in 1962 milliseconds

<<11121314