Searched defs:extra (Results 1 - 10 of 10) sorted by relevance

/system/core/libunwindstack/tests/
H A DMapsTest.cpp441 size_t extra = 0; local
450 extra = entry_len + overlap1_name.size() + 1;
455 size_t bytes_left_in_buffer = kBufferSize - extra;
/system/libhidl/libhidlcache/
H A DMemoryDealer.cpp161 int extra = 0; local
162 if (flags & PAGE_ALIGNED) extra = (-cur->start & ((pagesize / kMemoryAlign) - 1));
165 if (cur->free && (cur->size >= (size + extra))) {
180 int extra = 0; local
182 extra = (-free_chunk->start & ((pagesize / kMemoryAlign) - 1));
183 if (extra) {
184 chunk_t* split = new chunk_t(free_chunk->start, extra);
185 free_chunk->start += extra;
193 const ssize_t tail_free = free_size - (size + extra);
/system/media/audio_utils/
H A Dtinysndfile.c357 size_t extra = 0; local
362 extra = 14;
366 (void) fwrite(wav, 44 + extra, 1, stream);
407 size_t extra = (handle->info.format & SF_FORMAT_SUBMASK) == SF_FORMAT_FLOAT ? 14 : 0; local
408 (void) fread(wav, 44 + extra, 1, handle->stream);
410 write4u(&wav[4], dataSize + 36 + extra); // riffSize
411 write4u(&wav[40 + extra], dataSize); // dataSize
413 (void) fwrite(wav, 44 + extra, 1, handle->stream);
/system/netd/server/
H A DIptablesRestoreController.cpp314 size_t extra = output->size() - (pos + PING_SIZE); local
315 ALOGW("%zd extra characters after iptables response: '%s...'",
316 extra, output->substr(pos + PING_SIZE, 128).c_str());
/system/sepolicy/tools/fc_sort/
H A Dfc_sort.c41 char *extra; member in struct:file_context_node
497 /* Parse out the extra from the line. */
504 temp->extra = (char*)strndup(&line_buf[start], finish - start);
505 if (!(temp->extra)) {
607 /* Output the extra, if there is one. */
608 if (current->extra) {
609 fprintf(out_file, "\t%s", current->extra);
/system/core/libmemunreachable/
H A DAllocator.cpp143 ptrdiff_t extra = reinterpret_cast<uintptr_t>(aligned_ptr) - reinterpret_cast<uintptr_t>(ptr); local
144 munmap(ptr, extra);
145 map_size -= extra;
/system/bt/btif/include/
H A Dbtif_hl.h111 btif_hl_extra_mdl_cfg_t extra; member in struct:__anon518
/system/security/keystore/
H A DKeyStore.cpp505 size_t extra = decode_key_length(p, plen); local
506 char* match = (char*)malloc(extra + 1);
509 matches->push(android::String16(match, extra));
512 ALOGW("could not allocate match of size %zd", extra);
/system/tools/hidl/
H A DType.cpp501 "" /* extra */);
674 const std::string &extra) const {
682 out << extra; local
684 out << (extra.empty() ? "" : (extra + ", "));
/system/nfc/src/nfc/tags/
H A Drw_t3t.cc198 uint32_t extra; local
202 /* allow some extra time for driver */
203 extra = (timeout / 10) + RW_T3T_MIN_TIMEOUT_TICKS;
204 timeout += extra;
221 uint32_t extra; local
225 /* allow some extra time for driver */
226 extra = (timeout / 10) + RW_T3T_MIN_TIMEOUT_TICKS;
227 timeout += extra;

Completed in 212 milliseconds