Searched defs:word (Results 1 - 5 of 5) sorted by relevance

/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/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/core/toolbox/upstream-netbsd/usr.bin/grep/
H A Dgrep.h110 bool word; member in struct:__anon1716
/system/libhwbinder/
H A DDebug.cpp221 size_t word; local
223 for (word = 0; word < bytesPerLine; ) {
225 const size_t startIndex = word+(alignment-(alignment?1:0));
230 if (index == 0 && word > 0 && alignment > 0) {
244 if (index == 0 && word > 0) {
260 word += index;
/system/core/libpixelflinger/codeflinger/
H A Dmips_opcode.h48 unsigned word; member in union:__anon1600

Completed in 1527 milliseconds