HomeSort by relevance Sort by last modified time
    Searched refs:fls (Results 1 - 9 of 9) sorted by null

  /external/kernel-headers/original/asm-generic/bitops/
fls64.h 10 return fls(h) + 32;
11 return fls(x);
fls.h 5 * fls - find last (most-significant) bit set
9 * Note fls(0) = 0, fls(1) = 1, fls(0x80000000) = 32.
12 static inline int fls(int x) function
  /external/kernel-headers/original/linux/
bitops.h 6 * Include this here because some architectures need generic_ffs/fls in
15 order = fls(count);
23 order = fls(count) - 1;
59 return fls(l);
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/explorer/
DeviceContentProvider.java 85 public void setListingService(FileListingService fls) {
86 mFileListingService = fls;
DeviceExplorer.java 612 FileListingService fls = mCurrentDevice.getFileListingService();
613 mContentProvider.setListingService(fls);
614 mTreeViewer.setInput(fls.getRoot());
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
SyncService.java 340 FileListingService fls = new FileListingService(mDevice); local
343 int total = getTotalRemoteFileSize(entries, fls);
348 SyncResult result = doPull(entries, localPath, fls, monitor);
460 * @param fls
463 private int getTotalRemoteFileSize(FileEntry[] entries, FileListingService fls) {
469 FileEntry[] children = fls.getChildren(e, false, null);
470 count += getTotalRemoteFileSize(children, fls) + 1;
    [all...]
  /external/kernel-headers/original/asm-arm/
bitops.h 237 #include <asm-generic/bitops/fls.h>
276 #define fls(x) \ macro
279 #define ffs(x) ({ unsigned long __t = (x); fls(__t & -__t); })
  /external/kernel-headers/original/asm-x86/
bitops_32.h 437 * fls - find last bit set
442 static inline int fls(int x) function
  /prebuilt/common/groovy/
groovy-all-1.7.0.jar 

Completed in 272 milliseconds