HomeSort by relevance Sort by last modified time
    Searched refs:MemCmp16 (Results 1 - 3 of 3) sorted by null

  /art/runtime/arch/
memcmp16.h 23 // memcmp16 support.
31 // In both cases, MemCmp16 is declared.
36 #define MemCmp16 __memcmp16
41 static inline int32_t MemCmp16(const uint16_t* s0, const uint16_t* s1, size_t count) {
memcmp16.cc 17 #include "memcmp16.h"
37 return MemCmp16(s0, s1, count);
  /art/runtime/mirror/
string.cc 19 #include "arch/memcmp16.h"
316 // FIXME: The MemCmp16() name is misleading. It returns the char difference on mismatch
318 int32_t char_diff = MemCmp16(lhs_chars, rhs_chars, min_count);

Completed in 1008 milliseconds