Home
last modified time | relevance | path

Searched refs:val (Results 1 – 6 of 6) sorted by relevance

/dalvik/libdex/
DDexFile.cpp531 u4 dexRoundUpPower2(u4 val) in dexRoundUpPower2() argument
533 val--; in dexRoundUpPower2()
534 val |= val >> 1; in dexRoundUpPower2()
535 val |= val >> 2; in dexRoundUpPower2()
536 val |= val >> 4; in dexRoundUpPower2()
537 val |= val >> 8; in dexRoundUpPower2()
538 val |= val >> 16; in dexRoundUpPower2()
539 val++; in dexRoundUpPower2()
541 return val; in dexRoundUpPower2()
DDexFile.h576 u4 dexRoundUpPower2(u4 val);
/dalvik/tools/hprof-conv/
DHprofConv.c286 uint16_t val; in get2BE() local
288 val = (buf[0] << 8) | buf[1]; in get2BE()
289 return val; in get2BE()
297 uint32_t val; in get4BE() local
299 val = (buf[0] << 24) | (buf[1] << 16) | (buf[2] << 8) | buf[3]; in get4BE()
300 return val; in get4BE()
306 static void set4BE(unsigned char* buf, uint32_t val) in set4BE() argument
308 buf[0] = val >> 24; in set4BE()
309 buf[1] = val >> 16; in set4BE()
310 buf[2] = val >> 8; in set4BE()
[all …]
/dalvik/dx/etc/
Djasmin.jar ... .lang.Object) throws jas.jasError int val boolean badval Object value jas.CP cp public jas ...
/dalvik/tools/dexdeps/src/com/android/dexdeps/
DDexData.java487 byte val; in readUnsignedLeb128()
490 val = readByte(); in readUnsignedLeb128()
491 result = (result << 7) | (val & 0x7f); in readUnsignedLeb128()
492 } while (val < 0); in readUnsignedLeb128()
511 byte val = readByte(); in readString()
512 if (val == 0) in readString()
514 inBuf[idx] = val; in readString()
/dalvik/dexdump/
DDexDump.cpp208 static const char* quotedBool(bool val) in quotedBool() argument
210 if (val) in quotedBool()
231 static int countOnes(u4 val) in countOnes() argument
235 val = val - ((val >> 1) & 0x55555555); in countOnes()
236 val = (val & 0x33333333) + ((val >> 2) & 0x33333333); in countOnes()
237 count = (((val + (val >> 4)) & 0x0F0F0F0F) * 0x01010101) >> 24; in countOnes()