Searched defs:bytecount (Results 1 - 6 of 6) sorted by relevance

/external/lldb/tools/debugserver/source/
H A DDNBDataRef.cpp247 int bytecount = 0; local
251 bytecount++;
259 *offset_ptr += bytecount;
280 int bytecount = 0; local
284 bytecount++;
296 *offset_ptr += bytecount;
/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/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 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/lldb/source/Core/
H A DDataExtractor.cpp1215 int bytecount = 0; local
1219 bytecount++;
1231 *offset_ptr += bytecount;
/external/chromium_org/third_party/usrsctp/usrsctplib/netinet/
H A Dsctp_structs.h257 uint32_t bytecount; member in struct:htcp

Completed in 3561 milliseconds