Searched refs:bytecount (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/third_party/cld/encodings/compact_lang_det/
H A Dcldutil.cc96 uint32 cld::BiHashV25(const char* word_ptr, int bytecount) { argument
97 if (bytecount == 0) {
101 if (bytecount <= 4) {
102 word0 = UnalignedLoad32(word_ptr) & kWordMask0[bytecount & 3];
109 word1 = UnalignedLoad32(word_ptr + 4) & kWordMask0[bytecount & 3];
156 uint32 QuadHashV25Mix(const char* word_ptr, int bytecount, uint32 prepost) { argument
158 if (bytecount <= 4) {
159 word0 = UnalignedLoad32(word_ptr) & kWordMask0[bytecount & 3];
162 } else if (bytecount <= 8) {
165 word1 = UnalignedLoad32(word_ptr + 4) & kWordMask0[bytecount
184 QuadHashV25(const char* word_ptr, int bytecount) argument
198 QuadHashV25Underscore(const char* word_ptr, int bytecount) argument
225 OctaHash40Mix(const char* word_ptr, int bytecount, uint64 prepost) argument
338 OctaHash40(const char* word_ptr, int bytecount) argument
356 OctaHash40underscore(const char* word_ptr, int bytecount) argument
696 int bytecount = word_end - word_ptr; local
[all...]
H A Dcldutil.h1008 uint32 BiHashV25(const char* word_ptr, int bytecount);
1012 uint32 QuadHashV25(const char* word_ptr, int bytecount);
1016 uint32 QuadHashV25Underscore(const char* word_ptr, int bytecount);
1022 uint64 OctaHash40(const char* word_ptr, int bytecount);
1024 uint64 OctaHash40underscore(const char* word_ptr, int bytecount);
H A Dcompact_lang_det_impl.cc1152 // Reliable percent is stored reliable score over stored bytecount
1169 // Reliable percent is stored reliable score over stored bytecount
1227 // Reliable percent is stored as reliable score over stored bytecount
1917 // Sum minus previous % gives better roundoff behavior than bytecount/total
1941 int bytecount = doc_tote->Value(0); local
1943 int reliable_percent = reli / (bytecount ? bytecount : 1); // avoid zdiv
/external/valgrind/main/coregrind/m_syswrap/
H A Dsyswrap-x86-linux.c539 SysRes read_ldt ( ThreadId tid, UChar* ptr, UInt bytecount )
546 VG_(printf)("read_ldt: tid = %d, ptr = %p, bytecount = %d\n",
547 tid, ptr, bytecount );
559 if (size > bytecount)
560 size = bytecount;
572 SysRes write_ldt ( ThreadId tid, void* ptr, UInt bytecount, Int oldmode ) argument
580 "bytecount = %d, oldmode = %d\n",
581 tid, ptr, bytecount, oldmode );
590 if (bytecount != sizeof(vki_modify_ldt_t))
620 Int func, void* ptr, UInt bytecount )
[all...]
/external/valgrind/main/VEX/test/
H A Dtest-amd64.c961 _syscall3(int, modify_ldt, int, func, void *, ptr, unsigned long, bytecount)
H A Dtest-i386.c923 _syscall3(int, modify_ldt, int, func, void *, ptr, unsigned long, bytecount)
/external/valgrind/main/memcheck/tests/x86-linux/
H A Dscalar.stderr.exp1434 Syscall param modify_ldt(bytecount) contains uninitialised byte(s)

Completed in 160 milliseconds