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

1 2 3

  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
SSLBufferedInput.java 35 private int consumed = 0; field in class:SSLBufferedInput
46 consumed = 0;
57 * Returns the number of consumed bytes.
59 protected int consumed() { method in class:SSLBufferedInput
60 return consumed;
72 consumed ++;
SSLEngineDataStream.java 26 * it provides the info about amount of consumed data.
38 private int consumed; field in class:SSLEngineDataStream
46 this.consumed = 0;
71 consumed += len;
87 protected int consumed() { method in class:SSLEngineDataStream
88 return consumed;
  /external/apache-http/src/org/apache/http/entity/
InputStreamEntity.java 53 private boolean consumed = false; field in class:InputStreamEntity
100 this.consumed = true;
105 return !this.consumed;
110 this.consumed = true;
  /external/webkit/Source/WebCore/editing/
HTMLInterchange.cpp 62 unsigned consumed = 0; local
64 consumed = 1;
71 consumed = count;
106 i += consumed;
  /hardware/broadcom/wlan/bcm4329/dhdutil/include/
miniopt.h 43 int consumed; /* number of argv entries cosumed in member in struct:miniopt
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/
miniopt.h 43 int consumed; /* number of argv entries cosumed in member in struct:miniopt
  /system/media/wilhelm/src/android/
android_AudioToCbRenderer.cpp 63 size_t consumed = 0; local
66 consumed = mDecodeCbf(
71 offset += consumed;
72 //SL_LOGV("consumed=%u, offset=%u, full=%u", consumed, offset, full);
73 if (consumed == 0) {
74 // decoded data is not being consumed, skip this buffer
android_StreamPlayer.cpp 138 // (either because there was a command with no data, or all the data has been consumed)
207 // 2/ keep track of how much has been consumed
215 size_t consumed = oldFront->mDataSize - oldFront->mDataSizeConsumed; local
216 //SL_LOGD("consuming rest of buffer: enqueueing=%u", consumed);
229 if (consumed > 0) {
231 memcpy(bufferLoc, pSrc, consumed);
232 // 2/ keep track of how much has been consumed
235 receivedBuffer_l(bufferId, consumed);
239 // data has been consumed, and the buffer queue state has been updated
254 // here a buffer is only dequeued when fully consumed
    [all...]
  /device/moto/wingray/taudio/
resample.c 72 int downsample(const int16_t *in, int16_t *out, int len, int *consumed,
103 *consumed = i;
118 int consumed; local
210 consumed = 0;
212 nr = read(ifd, buf + consumed, sizeof(buf) - consumed);
218 nr += consumed;
221 nr_out = downsample(buf, buf, nr / 2, &consumed, divs, divs_len, channels == 2);
222 consumed *= 2;
223 // printf("done: %d samples were generated (consumed %d out of %d bytes)\n", nr_out, consumed, nr)
    [all...]
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ui/
WebSearchSuggestionView.java 78 boolean consumed = false;
81 consumed = mIcon2.requestFocus();
83 consumed = requestFocus();
86 return consumed;
  /external/skia/src/images/
SkImageDecoder_libpvjpeg.cpp 172 int32 consumed = bytesInStorage; local
173 status = codec->Decode((uint8*)storage, &consumed);
175 SkASSERT(bytesInStorage >= consumed);
176 bytesInStorage -= consumed;
180 SkASSERT(consumed >= 0 && bytesInStorage >= 0);
181 SkASSERT((size_t)(consumed + bytesInStorage) <= sizeof(fStorage));
183 // SkDebugf("-- memmov srcOffset=%d, numBytes=%d\n", consumed, bytesInStorage);
184 memmove(storage, storage + consumed, bytesInStorage);
  /external/bluetooth/bluez/audio/
gstsbcparse.c 86 int consumed; local
88 consumed = sbc_parse(&parse->new_sbc, data + offset,
90 if (consumed <= 0)
108 consumed, parse->outcaps, &output);
113 memcpy(GST_BUFFER_DATA(output), data + offset, consumed);
119 offset += consumed;
gstsbcdec.c 84 int consumed; local
93 consumed = sbc_decode(&dec->sbc, data + offset, size - offset,
96 if (consumed <= 0)
127 offset += consumed;
gstsbcenc.c 379 gint consumed; local
391 consumed = sbc_encode(&enc->sbc, (gpointer) data,
395 if (consumed <= 0) {
400 gst_adapter_flush(adapter, consumed);
  /hardware/broadcom/wlan/bcm4329/dhdutil/
miniopt.c 61 t->consumed = 0;
75 t->consumed++;
84 t->consumed++;
135 t->consumed++;
  /hardware/broadcom/wlan/bcmdhd/dhdutil/
miniopt.c 61 t->consumed = 0;
75 t->consumed++;
84 t->consumed++;
135 t->consumed++;
  /external/pcre/
pcre_scanner.cc 128 int consumed; local
129 return re.DoMatch(input_, RE::ANCHOR_START, &consumed, 0, 0);
pcrecpp.cc 188 int consumed; local
190 return DoMatchImpl(text, ANCHOR_BOTH, &consumed, args, n, vec, kVecSize);
230 int consumed; local
232 return DoMatchImpl(text, UNANCHORED, &consumed, args, n, vec, kVecSize);
272 int consumed; local
274 if (DoMatchImpl(*input, ANCHOR_START, &consumed,
276 input->remove_prefix(consumed);
320 int consumed; local
322 if (DoMatchImpl(*input, UNANCHORED, &consumed,
324 input->remove_prefix(consumed);
    [all...]
  /bootable/recovery/mtdutils/
mtdutils.c 41 size_t consumed; member in struct:MtdReadContext
278 ctx->consumed = partition->erase_size;
333 if (ctx->consumed < ctx->partition->erase_size) {
334 size_t avail = ctx->partition->erase_size - ctx->consumed;
336 memcpy(data + read, ctx->buffer + ctx->consumed, copy);
337 ctx->consumed += copy;
342 while (ctx->consumed == ctx->partition->erase_size &&
353 if (ctx->consumed == ctx->partition->erase_size && read < (int) len) {
355 ctx->consumed = 0;
  /external/bluetooth/bluez/sbc/
sbc.c 379 unsigned int consumed; local
445 consumed = 32;
452 if (len * 8 < consumed + frame->subbands)
463 consumed += frame->subbands;
467 if (len * 8 < consumed + (4 * frame->subbands * frame->channels))
472 /* FIXME assert(consumed % 4 == 0); */
474 (data[consumed >> 3] >> (4 - (consumed & 0x7))) & 0x0F;
478 consumed += 4;
499 if (consumed > len * 8
    [all...]
  /external/kernel-headers/original/linux/
textsearch.h 66 * @consumed: number of bytes consumed by the caller
73 * of the block or 0 if at the end. consumed == 0 indicates
76 unsigned int (*get_next_block)(unsigned int consumed,
  /external/protobuf/python/google/protobuf/
text_format.py 365 True iff the text was consumed.
379 ParseError: If the text couldn't be consumed.
402 ParseError: If an identifier couldn't be consumed.
417 ParseError: If a signed 32bit integer couldn't be consumed.
433 ParseError: If an unsigned 32bit integer couldn't be consumed.
449 ParseError: If a signed 64bit integer couldn't be consumed.
465 ParseError: If an unsigned 64bit integer couldn't be consumed.
481 ParseError: If a floating point number couldn't be consumed.
508 ParseError: If a boolean value couldn't be consumed.
526 ParseError: If a string value couldn't be consumed
    [all...]
  /frameworks/base/core/java/android/widget/
ListPopupWindow.java 819 boolean consumed;
851 consumed = mDropDownList.onKeyDown(keyCode, event);
852 if (DEBUG) Log.v(TAG, "Key down: code=" + keyCode + " list consumed=" + consumed);
854 if (consumed) {
904 boolean consumed = mDropDownList.onKeyUp(keyCode, event);
905 if (consumed) {
    [all...]
  /frameworks/base/core/java/android/view/
IWindowSession.aidl 146 * consumed is 'true' when the drop was accepted by a valid recipient,
149 void reportDropResult(IWindow window, boolean consumed);
  /external/libvpx/nestegg/src/
nestegg.c 1068 ne_read_xiph_lace_value(nestegg_io * io, uint64_t * value, size_t * consumed)
1076 *consumed += 1;
1083 *consumed += 1;
1191 size_t consumed = 0; local
1205 consumed += length;
1211 consumed += 2;
1217 consumed += 1;
1235 consumed += 1;
1244 frame_sizes[0] = block_size - consumed;
1249 r = ne_read_xiph_lacing(ctx->io, block_size, &consumed, frames, frame_sizes)
    [all...]

Completed in 1414 milliseconds

1 2 3