HomeSort by relevance Sort by last modified time
    Searched refs:leftover (Results 1 - 25 of 26) sorted by null

1 2

  /external/chromium_org/third_party/leveldatabase/src/db/
log_writer.cc 37 const int leftover = kBlockSize - block_offset_; local
38 assert(leftover >= 0);
39 if (leftover < kHeaderSize) {
41 if (leftover > 0) {
44 dest_->Append(Slice("\x00\x00\x00\x00\x00\x00", leftover));
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
base64.py 143 quanta, leftover = divmod(len(s), 5)
145 if leftover:
146 s += ('\0' * (5 - leftover))
151 # leftover bit of c1 and tack it onto c2. Then we take the 2 leftover
167 # Adjust for any leftover partial quanta
168 if leftover == 1:
170 elif leftover == 2:
172 elif leftover == 3:
174 elif leftover == 4
    [all...]
optparse.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
base64.py 143 quanta, leftover = divmod(len(s), 5)
145 if leftover:
146 s += ('\0' * (5 - leftover))
151 # leftover bit of c1 and tack it onto c2. Then we take the 2 leftover
167 # Adjust for any leftover partial quanta
168 if leftover == 1:
170 elif leftover == 2:
172 elif leftover == 3:
174 elif leftover == 4
    [all...]
optparse.py     [all...]
  /external/chromium/third_party/modp_b64/
modp_b64.cc 137 int leftover = len % 4; local
138 int chunks = (leftover == 0) ? len / 4 - 1 : len /4;
156 switch (leftover) {
182 return 3*chunks + (6*leftover)/8;
207 int leftover = len % 4; local
208 int chunks = (leftover == 0) ? len / 4 - 1 : len /4;
228 switch (leftover) {
260 return 3*chunks + (6*leftover)/8;
  /external/chromium_org/third_party/modp_b64/
modp_b64.cc 139 int leftover = len % 4; local
140 size_t chunks = (leftover == 0) ? len / 4 - 1 : len /4;
158 switch (leftover) {
184 return 3*chunks + (6*leftover)/8;
209 int leftover = len % 4; local
210 size_t chunks = (leftover == 0) ? len / 4 - 1 : len /4;
230 switch (leftover) {
262 return 3*chunks + (6*leftover)/8;
  /external/chromium_org/third_party/tcmalloc/chromium/src/
page_heap.cc 154 Span* leftover = NewSpan(span->start + n, extra); local
155 ASSERT(leftover->location == Span::IN_USE);
156 Event(leftover, 'U', extra);
157 RecordSpan(leftover);
161 return leftover;
187 Span* leftover = NewSpan(span->start + n, extra); local
188 leftover->location = old_location;
189 Event(leftover, 'S', extra);
190 RecordSpan(leftover);
192 // The previous span of |leftover| was just splitted -- no need t
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/
base64mime.py 55 groups_of_3, leftover = divmod(len(s), 3)
59 if leftover:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/
base64mime.py 55 groups_of_3, leftover = divmod(len(s), 3)
59 if leftover:
  /external/bluetooth/bluedroid/btif/src/
btif_sock_util.c 232 int leftover = size % width; local
233 if(leftover > 0)
241 for(j = 0; j < leftover; j++) {
252 for(j = 0; j < leftover; j++)
  /external/chromium_org/third_party/libjingle/source/talk/session/tunnel/
tunnelsessionclient_unittest.cc 194 size_t leftover = 0, position; local
196 block, sizeof(block), local_tunnel_.get(), &leftover);
199 send_stream_.SetPosition(position - leftover);
200 LOG(LS_VERBOSE) << "Send position: " << position - leftover;
  /external/chromium_org/third_party/tcmalloc/vendor/src/
page_heap.cc 153 Span* leftover = NewSpan(span->start + n, extra); local
154 ASSERT(leftover->location == Span::IN_USE);
155 Event(leftover, 'U', extra);
156 RecordSpan(leftover);
160 return leftover;
174 Span* leftover = NewSpan(span->start + n, extra); local
175 leftover->location = old_location;
176 Event(leftover, 'S', extra);
177 RecordSpan(leftover);
178 PrependToFreeList(leftover); // Skip coalescing - no candidates possibl
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
bitstream_io.cpp 629 Int leftover, bitused; local
638 leftover = 8 - bitused; /* bitused should be between 0-7 */
652 *ptrDst++ = (ptrSrc[0] << bitused) | (ptrSrc[1] >> leftover);
658 *ptrDst++ = (ptrSrc[0] << bitused) | (ptrSrc[1] >> leftover);
684 Int movebyte, bitused, leftover, i, fraction; local
714 leftover = 8 - bitused; /* bitused should be 0-7 */
716 byte = (bitstream2->word) << leftover;
722 *pDst++ = ((pSrc[0] << leftover) | (pSrc[1] >> bitused));
742 leftover = 8 - bitused;
743 //*pSrc = (pSrc[0]>>leftover)<<leftover; /* make sure the rest of bits are zeros *
    [all...]
  /external/chromium_org/third_party/libwebp/dsp/
upsampling_sse2.c 140 const int leftover = uv_len - num_blocks * 16; \
170 UPSAMPLE_LAST_BLOCK(top_u, cur_u, leftover, r_uv + 0 * 32); \
171 UPSAMPLE_LAST_BLOCK(top_v, cur_v, leftover, r_uv + 1 * 32); \
upsampling_neon.c 222 const int leftover = uv_len - num_blocks * 8; \
256 UPSAMPLE_LAST_BLOCK(top_u, cur_u, leftover, r_uv); \
257 UPSAMPLE_LAST_BLOCK(top_v, cur_v, leftover, r_uv + 16); \
  /external/webp/src/dsp/
upsampling_sse2.c 140 const int leftover = uv_len - num_blocks * 16; \
170 UPSAMPLE_LAST_BLOCK(top_u, cur_u, leftover, r_uv + 0 * 32); \
171 UPSAMPLE_LAST_BLOCK(top_v, cur_v, leftover, r_uv + 1 * 32); \
upsampling_neon.c 222 const int leftover = uv_len - num_blocks * 8; \
256 UPSAMPLE_LAST_BLOCK(top_u, cur_u, leftover, r_uv); \
257 UPSAMPLE_LAST_BLOCK(top_v, cur_v, leftover, r_uv + 16); \
  /external/tremolo/Tremolo/
bitwise.c 422 report("leftover bytes after read!\n");
431 int leftover=count*8-oggpack_bits(&o); local
432 if(leftover>7)
436 if(oggpack_read(&o,leftover)==-1)
460 int leftover=count*8-oggpack_bits(&o); local
461 if(leftover>7)
465 oggpack_adv(&o,leftover);
623 report("leftover bytes after read!\n");
  /external/libnfc-nci/src/adaptation/
libmain.c 391 int leftover = size % width; local
392 if(leftover > 0)
400 for(j = 0; j < leftover; j++)
413 for(j = 0; j < leftover; j++)
  /external/blktrace/
blkiomon.c 104 static long leftover = 0, driverdata = 0, match = 0, mismatch = 0, sequence = 0; variable
587 dump_bit(t, "leftover");
588 leftover++;
591 fprintf(debug.fp, "%ld leftover, %ld match, %ld mismatch, "
593 leftover, match, mismatch, driverdata, sequence);
  /external/qemu/telephony/
sms.c 1258 int leftover = 0; local
1282 leftover = count - num_pdus*block;
1283 if (leftover > 0)
1301 if (leftover > 0 && nn == num_pdus-1)
1302 skip = leftover;
    [all...]
  /external/chromium_org/third_party/sqlite/src/test/
tester.tcl 167 set leftover [list]
211 lappend leftover $a
215 set argv $leftover
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/
FastMalloc.cpp 781 // Allocate enough pages so leftover is less than 1/8 of total.
    [all...]
  /ndk/tests/build/b9193874-neon/jni/
b9193874-neon.c 170 const int leftover = uv_len - num_blocks * 8; local

Completed in 591 milliseconds

1 2