Home
last modified time | relevance | path

Searched refs:bytes_needed (Results 1 – 6 of 6) sorted by relevance

/external/libchrome/sandbox/win/src/sidestep/
Dpreamble_patcher_with_stub.cpp56 size_t* bytes_needed) { in RawPatchWithStub() argument
107 if (NULL != bytes_needed) in RawPatchWithStub()
108 *bytes_needed = preamble_bytes + 5; in RawPatchWithStub()
Dpreamble_patcher.h106 size_t* bytes_needed);
/external/google-tv-pairing-protocol/cpp/src/polo/pairing/
Dpairingsession.cc156 size_t bytes_needed = nonce_length / encoder_->symbols_per_byte(); in DoOutputPairing() local
158 uint8_t* random = util::PoloUtil::GenerateRandomBytes(bytes_needed); in DoOutputPairing()
159 nonce_ = new Nonce(random, random + bytes_needed); in DoOutputPairing()
/external/flac/libFLAC/
Dmd5.c493 const size_t bytes_needed = (size_t)channels * (size_t)samples * (size_t)bytes_per_sample; in FLAC__MD5Accumulate() local
501 if (ctx->capacity < bytes_needed) { in FLAC__MD5Accumulate()
502 if (0 == (ctx->internal_buf.p8 = safe_realloc_(ctx->internal_buf.p8, bytes_needed))) { in FLAC__MD5Accumulate()
503 if (0 == (ctx->internal_buf.p8 = safe_malloc_(bytes_needed))) { in FLAC__MD5Accumulate()
508 ctx->capacity = bytes_needed; in FLAC__MD5Accumulate()
513 FLAC__MD5Update(ctx, ctx->internal_buf.p8, bytes_needed); in FLAC__MD5Accumulate()
/external/icu/icu4c/source/test/cintltst/
Dnucnvtst.c5386 int32_t rules_length, target_cap, bytes_needed, buff_size; in TestJitterbug981() local
5422 bytes_needed = ucnv_fromUChars(utf8cnv, buff, target_cap, in TestJitterbug981()
5424 target_cap = (bytes_needed > target_cap) ? bytes_needed : target_cap +1; in TestJitterbug981()
5425 if(numNeeded!=0 && numNeeded!= bytes_needed){ in TestJitterbug981()
5429 numNeeded = bytes_needed; in TestJitterbug981()
5444 int32_t target_cap, bytes_needed, numNeeded = 0; in TestJitterbug1293() local
5453 bytes_needed = ucnv_fromUChars(conv,target,256,src,u_strlen(src),&status); in TestJitterbug1293()
5454 target_cap = (bytes_needed > target_cap) ? bytes_needed : target_cap +1; in TestJitterbug1293()
5455 if(numNeeded!=0 && numNeeded!= bytes_needed){ in TestJitterbug1293()
5458 numNeeded = bytes_needed; in TestJitterbug1293()
/external/swiftshader/third_party/subzero/src/
DIceAssemblerX86BaseImpl.h3834 intptr_t bytes_needed = alignment - mod; in align() local
3835 while (bytes_needed > MAX_NOP_SIZE) { in align()
3837 bytes_needed -= MAX_NOP_SIZE; in align()
3839 if (bytes_needed) { in align()
3840 nop(bytes_needed); in align()