Home
last modified time | relevance | path

Searched refs:_value (Results 1 – 7 of 7) sorted by relevance

/dalvik/vm/
DAtomicCache.h92 # define CACHE_XARG(_value) ,_value argument
94 # define CACHE_XARG(_value) argument
/dalvik/libcore/luni/src/main/java/java/lang/
DString.java1096 char[] _value = value; in hashCode() local
1098 hash += _value[i] * multiplier; in hashCode()
1124 char[] _value = value; in indexOf() local
1126 if (_value[i] == c) { in indexOf()
1156 char[] _value = value; in indexOf() local
1158 if (_value[i] == c) { in indexOf()
1198 char[] _value = value; in indexOf() local
1199 while (++o2 < end && _value[++o1] == target[o2]) { in indexOf()
1247 char[] _value = value; in indexOf() local
1248 while (++o2 < end && _value[++o1] == target[o2]) { in indexOf()
[all …]
/dalvik/vm/mterp/common/
Dasm-constants.h25 # define MTERP_CONSTANT(_name, _value) \ argument
26 if ((_name) != (_value)) { \
28 #_name, (_value), (_name)); \
/dalvik/libcore/luni/src/main/java/java/util/
DIdentityHashMap.java451 Object _value = value;
456 if (_value == null) {
457 _value = NULL_OBJECT;
477 elementData[index + 1] = _value;
/dalvik/vm/native/
Ddalvik_system_SamplingProfiler.c427 u2 _value = (value); \
428 *dest++ = (char) (_value >> 8); \
429 *dest++ = (char) _value; \
/dalvik/libcore/security/src/main/java/java/security/
DProvider.java740 Object _value; in updatePropertyServiceTable() local
751 _value = entry.getValue(); in updatePropertyServiceTable()
752 if (_key == null || _value == null || !(_key instanceof String) in updatePropertyServiceTable()
753 || !(_value instanceof String)) { in updatePropertyServiceTable()
757 String value = (String) _value; in updatePropertyServiceTable()
/dalvik/libdex/
DDexSwapVerify.c38 # define SWAP2(_value) (_value) argument
39 # define SWAP4(_value) (_value) argument
40 # define SWAP8(_value) (_value) argument
42 # define SWAP2(_value) endianSwapU2((_value)) argument
43 # define SWAP4(_value) endianSwapU4((_value)) argument
44 # define SWAP8(_value) endianSwapU8((_value)) argument