Home
last modified time | relevance | path

Searched refs:f_type (Results 1 – 25 of 88) sorted by relevance

1234

/external/libchrome/libchrome_tools/patch/
Dstatfs_f_type.patch1 # In some platforms, |statfs_buf.f_type| is declared as signed, but some of the
17 // Not all possible |statfs_buf.f_type| values are in linux/magic.h.
19 - switch (statfs_buf.f_type) {
20 + // In some platforms, |statfs_buf.f_type| is declared as signed, but some of
23 + switch (static_cast<uintmax_t>(statfs_buf.f_type)) {
33 - switch (stats.f_type) {
34 + // In some platforms, |statfs_buf.f_type| is declared as signed, but some of
37 + switch (static_cast<uintmax_t>(stats.f_type)) {
/external/llvm-project/libclc/generic/lib/relational/
Dbitselect.cl31 #define FLOAT_BITSELECT(f_type, i_type, width) \
32 …_CLC_OVERLOAD _CLC_DEF f_type##width bitselect(f_type##width x, f_type##width y, f_type##width z) …
33 …return as_##f_type##width(bitselect(as_##i_type##width(x), as_##i_type##width(y), as_##i_type##wid…
/external/ltp/lib/
Dtst_fs_type.c43 return sbuf.f_type; in tst_fs_type_()
46 const char *tst_fs_type_name(long f_type) in tst_fs_type_name() argument
48 switch (f_type) { in tst_fs_type_name()
/external/protobuf/python/google/protobuf/
Dproto_builder.py94 for f_name, f_type in field_items:
96 fields_hash.update(str(f_type).encode('utf-8'))
124 for f_number, (f_name, f_type) in enumerate(field_items, 1):
129 field_proto.type = f_type
/external/kernel-headers/original/uapi/asm-generic/
Dstatfs.h24 __statfs_word f_type; member
47 __statfs_word f_type; member
70 __u32 f_type; member
/external/strace/
Dfetch_struct_statfs.c52 p->f_type = zero_extend_signed_to_ull(b.f_type); in MPERS_PRINTER_DECL()
100 p->f_type = zero_extend_signed_to_ull(b.f_type); in MPERS_PRINTER_DECL()
Dprint_statfs.c67 print_statfs_type("{f_type=", b.f_type); in print_struct_statfs()
103 print_statfs_type("{f_type=", b.f_type); in print_struct_statfs64()
Dstatfs.h32 unsigned long long f_type; member
/external/rust/crates/libc/src/unix/bsd/freebsdlike/freebsd/freebsd11/
Dmod.rs46 pub f_type: u32,
77 && self.f_type == other.f_type
133 self.f_type.hash(state);
/external/rust/crates/libc/src/unix/bsd/freebsdlike/freebsd/freebsd13/
Dmod.rs45 pub f_type: u32,
74 && self.f_type == other.f_type
130 self.f_type.hash(state);
/external/rust/crates/libc/src/unix/bsd/freebsdlike/freebsd/freebsd12/
Dmod.rs45 pub f_type: u32,
74 && self.f_type == other.f_type
130 self.f_type.hash(state);
/external/toybox/toys/other/
Dswitch_root.c55 (stfs.f_type != 0x858458f6 && stfs.f_type != 0x01021994)) in switch_root_main()
/external/linux-kselftest/tools/testing/selftests/proc/
Dread.c138 if (sfs.f_type != 0x9fa0) { in main()
139 fprintf(stderr, "error: unexpected f_type %lx\n", (long)sfs.f_type); in main()
/external/tensorflow/tensorflow/python/autograph/pyct/static_analysis/
Dtype_inference.py96 def res_call(self, ns, types_ns, node, f_type, args, keywords): argument
413 f_type = self.types_in.types.get(f_name, None)
414 if f_type is None:
419 f_type, arg_types, keyword_types)
423 f_type = anno.Static.TYPES.of(node.func, None)
426 f_type, arg_types,
Dtype_inference_test.py207 def res_call(self, ns, types_ns, node, f_type, args, keywords): argument
208 test_self.assertEqual(f_type, (str,))
430 def res_call(self, ns, types_ns, node, f_type, args, keywords): argument
431 test_self.assertEqual(f_type, (str,))
463 def res_call(self, ns, types_ns, node, f_type, args, keywords): argument
464 test_self.assertIsNone(f_type)
620 def res_call(self, ns, types_ns, node, f_type, args, keywords): argument
622 test_self.assertEqual(f_type, (Callable[[Callable], None],))
/external/selinux/libselinux/src/
Dselinux_restorecon.c955 if (sfsb.f_type == RAMFS_MAGIC || sfsb.f_type == TMPFS_MAGIC || in selinux_restorecon()
956 sfsb.f_type == SYSFS_MAGIC) in selinux_restorecon()
1021 if (sfsb.f_type == SYSFS_MAGIC && in selinux_restorecon()
1268 if (sfsb.f_type == RAMFS_MAGIC || in selinux_restorecon_xattr()
1269 sfsb.f_type == TMPFS_MAGIC) in selinux_restorecon_xattr()
1303 if (sfsb.f_type == RAMFS_MAGIC || in selinux_restorecon_xattr()
1304 sfsb.f_type == TMPFS_MAGIC) in selinux_restorecon_xattr()
/external/rust/crates/libc/src/unix/linux_like/linux/musl/b64/
Dmod.rs7 pub f_type: ::c_ulong,
78 pub f_type: ::c_ulong,
/external/e2fsprogs/misc/
Dfilefrag.c431 (unsigned long)fsinfo.f_type);
434 if (fsinfo.f_type == 0xef51 || fsinfo.f_type == 0xef52 ||
435 fsinfo.f_type == 0xef53) {
/external/libchrome/base/files/
Dfile_util_linux.cc30 switch (static_cast<uintmax_t>(statfs_buf.f_type)) { in GetFileSystemType()
/external/rust/crates/libc/src/unix/linux_like/android/b32/
Dmod.rs70 pub f_type: u32,
132 pub f_type: u32,
/external/libbrillo/brillo/namespaces/
Dplatform.cc35 if ((uint64_t)buff.f_type == NSFS_MAGIC) { in FileSystemIsNsfs()
/external/ltp/testcases/kernel/syscalls/fstatfs/
Dfstatfs01.c88 tcases[i].msg, stats.f_type); in main()
/external/rust/crates/libc/src/unix/bsd/freebsdlike/dragonfly/
Dmod.rs90 pub f_type: ::c_uint,
226 pub f_type: i32,
358 && self.f_type == other.f_type
390 .field("f_type", &self.f_type)
412 self.f_type.hash(state);
/external/rust/crates/libc/src/unix/linux_like/linux/uclibc/x86_64/
Dmod.rs160 pub f_type: fsword_t,
174 pub f_type: ::c_int,
/external/strace/tests/
Dxstatfsx.c82 print_statfs_type("{f_type=", b->f_type); in print_statfs()

1234