/cts/tools/vm-tests/src/dot/junit/opcodes/move_object_from16/ |
Test_move_object_from16.java | 100 * @title When writing to a register that is one half of a 101 * register pair, but not touching the other half, the old register pair gets broken
|
/cts/tools/vm-tests/src/dot/junit/opcodes/move_wide/ |
Test_move_wide.java | 94 * @title When writing to a register that is one half of a 95 * register pair, but not touching the other half, the old register pair gets broken
|
/dalvik/docs/opcodes/ |
opcode-0a-move-result.html | 71 If register v(A-1) is the lower half of a register pair, register v(A-1)' 75 If register v(A+1) is the upper half of a register pair, register v(A+1)'
|
opcode-0b-move-result-wide.html | 76 If register v(A-1) is the lower half of a register pair, register v(A-1)' 80 If register v(A+2) is the upper half of a register pair, register v(A+2)'
|
opcode-0c-move-result-object.html | 72 If register v(A-1) is the lower half of a register pair, register v(A-1)' 76 If register v(A+1) is the upper half of a register pair, register v(A+1)'
|
opcode-12-const.html | 88 If v(A-1) is the lower half of a register pair, v(A-1)' becomes undefined. 91 If v(A+1) is the upper half of a register pair, v(A+1)' becomes undefined.
|
opcode-16-const-wide.html | 96 If v(A-1) is the lower half of a register pair, v(A-1)' becomes undefined. 99 If v(A+2) is the upper half of a register pair, v(A+2)' becomes undefined.
|
opcode-1b-const-class.html | 73 If v(A-1) is the lower half of a register pair, v(A-1)' becomes undefined. 76 If v(A+1) is the upper half of a register pair, v(A+1)' becomes undefined.
|
opcode-20-instance-of.html | 87 If v(A-1) is the lower half of a register pair, v(A-1)' becomes undefined. 90 If v(A+1) is the upper half of a register pair, v(A+1)' becomes undefined.
|
opcode-23-new-array.html | 86 If v(A-1) is the lower half of a register pair, v(A-1)' becomes undefined. 89 If v(A+1) is the upper half of a register pair, v(A+1)' becomes undefined.
|
/external/dropbear/libtommath/ |
bn_mp_dr_reduce.c | 54 /* alias for lower half of x */ 57 /* alias for upper half of x, or x/B**m */
|
bn_mp_reduce_is_2k_l.c | 28 /* if more than half of the digits are -1 we're sold */
|
/external/grub/netboot/ |
tulip.txt | 27 10/100 half/full duplex. It seems like a pretty good value compared to 34 device. On other cards, it chooses 10mbit half-duplex.
|
/external/kernel-headers/original/linux/byteorder/ |
swabb.h | 18 * swahw32 swap 16-bit half-words in a 32-bit word 19 * swahb32 swap 8-bit halves of each 16-bit half-word in a 32-bit word
|
/external/sqlite/android/ |
PhoneticStringUtils.h | 30 // when previous "codepoint" is appropriate, like half-width "ka"). 32 // In Japanese, "normalized" means that half-width and full-width katakana is
|
/external/webkit/JavaScriptCore/runtime/ |
PropertyMapHashTable.h | 79 // We never let a hash table get more than half full, 81 // But the number of entries is half that (plus one for the deleted sentinel).
|
/bionic/libc/arch-x86/string/ |
swab.S | 11 * by gcc at about half the size. If my i386 databook is correct, it
|
/cts/apps/CtsVerifier/jni/audioquality/ |
GenerateSinusoid.h | 22 with a half-raised-cosine function. It is up to the caller to
|
/external/chromium/base/third_party/dmg_fp/ |
dmg_fp.h | 13 // biased rounding (add half and chop).
|
/external/netcat/scripts/ |
dist.sh | 6 ## logging. In a half-screen of shell script!!
|
/external/openssl/crypto/ripemd/ |
README | 11 after the first half of the calculation. I should read the origional
|
/packages/apps/Phone/res/color-finger/ |
dialer_button_text.xml | 19 <!-- Half-way between #FFF and #000 -->
|
/dalvik/dx/src/com/android/dx/util/ |
ByteArrayAnnotatedOutput.java | 211 int half = (int) value; local 212 data[writeAt] = (byte) half; 213 data[writeAt + 1] = (byte) (half >> 8); 214 data[writeAt + 2] = (byte) (half >> 16); 215 data[writeAt + 3] = (byte) (half >> 24); 217 half = (int) (value >> 32); 218 data[writeAt + 4] = (byte) half; 219 data[writeAt + 5] = (byte) (half >> 8); 220 data[writeAt + 6] = (byte) (half >> 16); 221 data[writeAt + 7] = (byte) (half >> 24) [all...] |
/system/media/opensles/tests/sandbox/ |
intbufq.c | 65 frame_t half[HALF_FRAMES]; variable 164 half[i].left = sine[i].left; 165 half[i].right = sawtooth[i].right / 2; 196 buffer = half; 197 size = sizeof(half);
|
/external/bluetooth/glib/glib/ |
gunidecomp.c | 179 int half = (start + end) / 2; local 180 if (ch == decomp_table[half].ch) 186 offset = decomp_table[half].compat_offset; 188 offset = decomp_table[half].canon_offset; 192 offset = decomp_table[half].canon_offset; 199 else if (half == start) 201 else if (ch > decomp_table[half].ch) 202 start = half; 204 end = half;
|