/dalvik/vm/native/ |
java_lang_System.cpp | 56 #define move32 _memmove_words macro 82 static void move32(void* dest, const void* src, size_t n) function 192 move32((u1*) dstArray->contents + dstPos * 4, 202 move32((u1*) dstArray->contents + dstPos * 8, 228 move32((u1*)dstArray->contents + dstPos * width, 242 * then call move32() to shift the actual data. If we just 273 move32((u1*)dstArray->contents + dstPos * width,
|
/external/icu4c/common/unicode/ |
uchriter.h | 335 virtual int32_t move32(int32_t delta, EOrigin origin);
|
chariter.h | 261 * it.move32(3, CharacterIterator::kStart); 359 * Origin enumeration for the move() and move32() functions. 602 virtual int32_t move32(int32_t delta, EOrigin origin) = 0;
|
/external/icu4c/test/intltest/ |
citrtest.cpp | 100 virtual int32_t move32(int32_t delta, CharacterIterator::EOrigin origin){ function in class:SCharacterIterator 568 i=iter.move32(1, CharacterIterator::kStart); 571 errln("move32(1, kStart) didn't work correctly expected %X got %X", c, text.char32At(1) ); 573 i=iter.move32(2, CharacterIterator::kCurrent); 576 errln("move32(2, kCurrent) didn't work correctly expected %X got %X i=%ld", c, text.char32At(4), i); 578 i=iter.move32(-2, CharacterIterator::kCurrent); 581 errln("move32(-2, kCurrent) didn't work correctly expected %X got %X i=%d", c, text.char32At(1), i); 584 i=iter.move32(-2, CharacterIterator::kEnd); 587 errln("move32(-2, kEnd) didn't work correctly expected %X got %X i=%d", c, text.char32At((text.length()-3)), i); 1117 virtual int32_t move32(int32_t \/*delta*\/, EOrigin \/*origin*\/) { function in class:SubCharIter [all...] |
/external/icu4c/common/ |
uchriter.cpp | 319 UCharCharacterIterator::move32(int32_t delta, CharacterIterator::EOrigin origin) { function in class:UCharCharacterIterator
|
normlzr.cpp | 486 text->move32(-1, CharacterIterator::kCurrent);
|