HomeSort by relevance Sort by last modified time
    Searched refs:ffs (Results 1 - 25 of 173) sorted by null

1 2 3 4 5 6 7

  /external/libpcap/lbl/
os-aix4.h 23 int ffs(int i);
os-aix7.h 23 int ffs(int i);
os-hpux11.h 23 int ffs(int i);
  /bionic/libc/bionic/
ffs.cpp 31 int ffs(int x) { function
  /toolchain/binutils/binutils-2.27/libiberty/
ffs.c 0 /* ffs -- Find the first bit set in the parameter
3 @deftypefn Supplemental int ffs (int @var{valu})
14 ffs (register int valu) function
  /bionic/tests/
strings_test.cpp 29 TEST(STRINGS_TEST, ffs) {
30 ASSERT_EQ( 0, ffs(0x00000000));
31 ASSERT_EQ( 1, ffs(0x00000001));
32 ASSERT_EQ( 6, ffs(0x00000020));
33 ASSERT_EQ(11, ffs(0x00000400));
34 ASSERT_EQ(16, ffs(0x00008000));
35 ASSERT_EQ(17, ffs(0x00010000));
36 ASSERT_EQ(22, ffs(0x00200000));
37 ASSERT_EQ(27, ffs(0x04000000));
38 ASSERT_EQ(32, ffs(0x80000000))
    [all...]
  /device/linaro/bootloader/edk2/UefiCpuPkg/Feature/Capsule/MicrocodeCapsuleTxt/Microcode/
Microcode.inf 21 FFS_EXT = .ffs
  /external/mesa3d/src/util/
bitscan.c 35 ffs(unsigned i) function
70 bit = ffs((unsigned) (val & 0xffffffff));
74 bit = ffs((unsigned) (val >> 32));
bitscan.h 52 #define ffs __builtin_ffs macro
55 int ffs(unsigned i) function
65 int ffs(unsigned i);
97 const int i = ffs(*mask) - 1;
131 *start = ffs(*mask) - 1;
132 *count = ffs(~(*mask >> *start)) - 1;
154 * Essentially ffs() in the reverse direction.
  /bionic/libc/include/android/
legacy_strings_inlines.h 40 /* Everyone except x86 had ffs since the beginning. */
41 static __inline int ffs(int __n) { return __builtin_ffs(__n); } function
  /external/mesa3d/src/intel/isl/
isl_gen9.c 52 .w = 1 << (12 - (ffs(bpb) - 4) + (4 * is_Ys)),
63 .w = 1 << (6 - ((ffs(bpb) - 4) / 2) + (4 * is_Ys)),
64 .h = 1 << (6 - ((ffs(bpb) - 3) / 2) + (4 * is_Ys)),
77 align_sa->w >>= (ffs(info->samples) - 0) / 2;
78 align_sa->h >>= (ffs(info->samples) - 1) / 2;
89 .w = 1 << (4 - ((ffs(bpb) - 2) / 3) + (4 * is_Ys)),
90 .h = 1 << (4 - ((ffs(bpb) - 4) / 3) + (2 * is_Ys)),
91 .d = 1 << (4 - ((ffs(bpb) - 3) / 3) + (2 * is_Ys)),
  /bionic/tests/headers/posix/
strings_h.c 34 FUNCTION(ffs, int (*f)(int));
  /device/linaro/bootloader/edk2/StdLib/Include/
strings.h 48 int ffs(int);
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/mips/
mips4010.s 11 ffs $7,$8
mips4010.d 15 0+0018 <stuff\+0x18> ffs a3,t0
  /device/google/wahoo/
init.hardware.usb.rc 31 mkdir /config/usb_gadget/g1/functions/ffs.adb
32 mkdir /config/usb_gadget/g1/functions/ffs.mtp
33 mkdir /config/usb_gadget/g1/functions/ffs.ptp
44 mkdir /dev/usb-ffs 0775 shell shell
45 mkdir /dev/usb-ffs/adb 0770 shell shell
46 mount functionfs adb /dev/usb-ffs/adb rmode=0770,fmode=0660,uid=2000,gid=2000
47 mkdir /dev/usb-ffs/mtp 0770 mtp mtp
48 mkdir /dev/usb-ffs/ptp 0770 mtp mtp
49 mount functionfs mtp /dev/usb-ffs/mtp rmode=0770,fmode=0660,uid=1024,gid=1024,no_disconnect=1
50 mount functionfs ptp /dev/usb-ffs/ptp rmode=0770,fmode=0660,uid=1024,gid=1024,no_disconnect=
    [all...]
  /device/google/cuttlefish/shared/config/
init.hardware.usb.rc 31 mkdir /config/usb_gadget/g1/functions/ffs.adb
32 mkdir /config/usb_gadget/g1/functions/ffs.mtp
33 mkdir /config/usb_gadget/g1/functions/ffs.ptp
43 mkdir /dev/usb-ffs 0775 shell shell
44 mkdir /dev/usb-ffs/adb 0770 shell shell
45 mount functionfs adb /dev/usb-ffs/adb uid=2000,gid=2000
46 mkdir /dev/usb-ffs/mtp 0770 mtp mtp
47 mkdir /dev/usb-ffs/ptp 0770 mtp mtp
48 mount functionfs mtp /dev/usb-ffs/mtp rmode=0770,fmode=0660,uid=1024,gid=1024,no_disconnect=1
49 mount functionfs ptp /dev/usb-ffs/ptp rmode=0770,fmode=0660,uid=1024,gid=1024,no_disconnect=
    [all...]
  /external/jemalloc/include/msvc_compat/
strings.h 4 /* MSVC doesn't define ffs/ffsl. This dummy strings.h header is provided
18 static __forceinline int ffs(int x) function
56 # define ffs(x) __builtin_ffs(x) macro
  /device/linaro/bootloader/arm-trusted-firmware/include/lib/stdlib/
strings.h 50 int ffs(int) __pure2;
  /external/vulkan-validation-layers/layers/
vk_layer_utils.h 29 #include <strings.h> // For ffs()
61 return ffs(val);
  /external/jemalloc/include/jemalloc/
jemalloc_macros.h 16 # define MALLOCX_ALIGN(a) ((int)(ffs((int)(a))-1))
19 ((int)(((size_t)(a) < (size_t)INT_MAX) ? ffs((int)(a))-1 : \
20 ffs((int)(((size_t)(a))>>32))+31))
  /bionic/libc/include/
strings.h 58 int ffs(int __i) __INTRODUCED_IN_X86(18);
  /external/mesa3d/src/mesa/drivers/dri/i965/
gen8_multisample_state.c 38 unsigned log2_samples = ffs(MAX2(num_samples, 1)) - 1;
  /device/linaro/bootloader/edk2/ArmPlatformPkg/Scripts/Ds5/
firmware_volume.py 190 return "FFS(state:0x%x, type:0x%X, size:0x%x)" % (self.get_state(), self.get_type(), self.get_size())
266 def get_next_ffs(self, ffs=None):
267 if ffs == None:
268 # Get the offset of the first FFS file from the FV header
271 # Goto the next FFS file
272 ffs_base = int(ffs.get_base() + ffs.get_size())
286 ffs = self.get_next_ffs()
287 while ffs != None:
288 section = ffs.get_next_section()
    [all...]
edk2_debugger.py 33 ffs = fv.get_next_ffs()
34 while ffs != None:
35 print "# %s" % ffs
37 section = ffs.get_next_section()
44 section = ffs.get_next_section(section)
46 ffs = fv.get_next_ffs(ffs)

Completed in 358 milliseconds

1 2 3 4 5 6 7