Searched refs:word (Results 1 - 12 of 12) sorted by relevance

/system/extras/perfprofd/quipper/original-kernel-headers/tools/perf/util/include/linux/
H A Dbitops.h54 * __ffs - find first bit in word.
55 * @word: The word to search
59 static __always_inline unsigned long __ffs(unsigned long word) argument
64 if ((word & 0xffffffff) == 0) {
66 word >>= 32;
69 if ((word & 0xffff) == 0) {
71 word >>= 16;
73 if ((word & 0xff) == 0) {
75 word >>
[all...]
/system/extras/memory_replay/
H A Dmain.cpp45 char* word = reinterpret_cast<char*>(memchr(line, ':', line_len)); local
46 if (word == nullptr) {
50 word++;
51 while (*word++ == ' ');
55 if (*word == 'f') {
58 if (sscanf(word, "free %" SCNxPTR, &pointer) == 1 && pointer != 0) {
61 } else if (*word != 't') {
/system/core/rootdir/
H A DAndroid.mk143 ; mkdir -p $(dir $(TARGET_ROOT_OUT)/$(word 2,$(p))) \
144 ; ln -sf $(word 1,$(p)) $(TARGET_ROOT_OUT)/$(word 2,$(p)))
155 bcp_md5 := $(word 1, $(shell echo $(PRODUCT_BOOTCLASSPATH) $(PRODUCT_SYSTEM_SERVER_CLASSPATH) | $(MD5SUM)))
/system/core/libpixelflinger/codeflinger/
H A Dmips64_disassem.c156 i.word = insn;
160 if (i.word == 0) {
164 if (i.word == 0x0080) {
168 if (i.word == 0x00c0) {
H A Dmips_disassem.c191 i.word = insn;
195 if (i.word == 0) {
199 if (i.word == 0x0080) {
203 if (i.word == 0x00c0) {
H A Dmips_opcode.h48 unsigned word; member in union:__anon1643
H A DARMAssembler.cpp434 #pragma mark Byte/half word extract and extend (ARMv6+ only)...
/system/core/toolbox/upstream-netbsd/usr.bin/grep/
H A Dgrep.h110 bool word; member in struct:__anon1725
H A Dfastgrep.c95 fg->word = wflag;
116 fg->word = true;
121 * the word match character classes at the beginning and ending
H A Dutil.c325 /* Check for whole word match */
326 if (fg_pattern[i].word && pmatch.rm_so != 0) {
/system/core/fs_mgr/
H A Dfs_mgr_verity.cpp918 std::string result, word; local
924 word = blk_device;
926 word = token;
930 result = word;
932 result += " " + word;
/system/media/camera/docs/
H A Dhtml.mako41 table { border-collapse:collapse; table-layout: fixed; width: 100%; word-wrap: break-word }

Completed in 273 milliseconds