HomeSort by relevance Sort by last modified time
    Searched defs:nBytes (Results 1 - 25 of 48) sorted by null

1 2

  /frameworks/base/core/jni/
android_server_Watchdog.cpp 42 int nBytes;
43 while ((nBytes = read(stackFd, buf, sizeof(buf))) > 0) {
44 write(outFd, buf, nBytes);
  /libcore/luni/src/main/java/org/apache/harmony/security/provider/crypto/
SHA1Impl.java 176 int nBytes;
229 nBytes = toByte - i +1;
230 if ( nBytes != 0 ) {
234 if ( nBytes != 1 ) {
236 if ( nBytes != 2) {
  /external/aac/libAACdec/src/
aacdecoder_lib.cpp 764 int nBytes;
766 nBytes = nBits>>3;
767 pSi->numTotalBytes += nBytes;
772 pSi->numBadBytes += nBytes;
    [all...]
  /external/bzip2/
compress.c 243 Int32 nGroups, nBytes;
503 nBytes = s->numZ;
514 VPrintf1( " bytes: mapping %d, ", s->numZ-nBytes );
518 nBytes = s->numZ;
526 VPrintf1( "selectors %d, ", s->numZ-nBytes );
529 nBytes = s->numZ;
542 VPrintf1 ( "code lengths %d, ", s->numZ-nBytes );
545 nBytes = s->numZ;
597 VPrintf1( "codes %d\n", s->numZ-nBytes );
  /external/llvm/lib/Target/NVPTX/
NVPTXAsmPrinter.h 150 unsigned int nBytes = 4;
152 nBytes = 8;
153 for (pos = 0; pos < size; pos += nBytes) {
184 } else if (nBytes == 4)
  /system/nfc/halimpl/bcm2079x/adaptation/
android_logmsg.cpp 164 uint32_t nBytes = ((NFC_HDR_SIZE + p_buf->offset + p_buf->len) * 2) + 1;
170 if (nBytes > sizeof(log_line)) return;
178 uint32_t nBytes = ((NFC_HDR_SIZE + p_buf->offset + p_buf->len) * 2) + 1;
184 if (nBytes > sizeof(log_line)) return;
200 uint32_t nBytes = ((NFC_HDR_SIZE + p_buf->offset + p_buf->len) * 2) + 1;
206 if (nBytes > sizeof(log_line)) return;
223 uint32_t nBytes = (len * 2) + 1;
230 if (nBytes > sizeof(log_line)) return;
  /system/nfc/src/adaptation/
android_logmsg.cpp 165 uint32_t nBytes = ((NFC_HDR_SIZE + p_buf->offset + p_buf->len) * 2) + 1;
171 if (nBytes > sizeof(log_line)) return;
179 uint32_t nBytes = ((NFC_HDR_SIZE + p_buf->offset + p_buf->len) * 2) + 1;
185 if (nBytes > sizeof(log_line)) return;
201 uint32_t nBytes = ((NFC_HDR_SIZE + p_buf->offset + p_buf->len) * 2) + 1;
207 if (nBytes > sizeof(log_line)) return;
224 uint32_t nBytes = (len * 2) + 1;
231 if (nBytes > sizeof(log_line)) return;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/gdiplus/
gdiplusmetaheader.h 48 DWORD nBytes;
  /external/icu/icu4c/source/test/perf/ubrkperf/
ubrkperfold.cpp 594 int nBytes;
595 if (ch >= 0xF0) {nBytes=4;}
596 else if (ch >= 0xE0) {nBytes=3;}
597 else if (ch >= 0xC0) {nBytes=2;}
607 for (i=1; i<nBytes; i++) {
610 fprintf(stderr, "utf-8 encoded file %s contains corrupt data at offset %d. Expected %d bytes, byte %d is invalid. First byte is %02X\n", fName, ftell(fFile), nBytes, i, ch);
  /external/pdfium/core/fxge/dib/
fx_dib_transform.cpp 224 int nBytes = GetBPP() / 8;
226 if (nBytes == 3) {
232 uint8_t* dest_scan = dest_buf + dest_col * nBytes;
236 if (nBytes == 4) {
243 const uint8_t* src_scan = GetScanline(row) + col_start * nBytes;
244 if (nBytes == 1) {
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/os/
MmsMessagingDemo.java 280 final int nBytes = (int) mDownloadFile.length();
282 final byte[] response = new byte[nBytes];
283 final int read = reader.read(response, 0, nBytes);
284 if (read == nBytes) {
  /external/icu/icu4c/source/test/perf/collationperf/
collperf.cpp     [all...]
  /external/webrtc/webrtc/modules/audio_device/win/
audio_device_wave_win.cc     [all...]
  /hardware/qcom/media/msm8974/mm-core/inc/
QOMX_VideoExtensions.h 296 * nBytes : When used with OMX_GetParameter for the encoder
308 * OMX_GetParamter with nBytes set to 0. In this
309 * case, when OMX_GetParameter returns, the nBytes
346 OMX_U32 nBytes;
  /hardware/qcom/media/msm8996/mm-core/inc/
QOMX_VideoExtensions.h 297 * nBytes : When used with OMX_GetParameter for the encoder
309 * OMX_GetParamter with nBytes set to 0. In this
310 * case, when OMX_GetParameter returns, the nBytes
347 OMX_U32 nBytes;
  /hardware/qcom/media/msm8998/mm-core/inc/
QOMX_VideoExtensions.h 297 * nBytes : When used with OMX_GetParameter for the encoder
309 * OMX_GetParamter with nBytes set to 0. In this
310 * case, when OMX_GetParameter returns, the nBytes
347 OMX_U32 nBytes;
  /external/libopus/src/
opus_encoder.c 946 opus_int32 nBytes;
    [all...]
  /external/valgrind/coregrind/
m_mallocfree.c     [all...]
  /frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
SettingsBackupAgent.java 356 int nBytes = in.readInt();
357 if (DEBUG_BACKUP) Log.d(TAG, nBytes + " bytes of settings data");
358 byte[] buffer = new byte[nBytes];
359 in.readFully(buffer, 0, nBytes);
360 restoreSettings(buffer, nBytes, Settings.System.CONTENT_URI, movedToGlobal);
363 nBytes = in.readInt();
364 if (DEBUG_BACKUP) Log.d(TAG, nBytes + " bytes of secure settings data");
365 if (nBytes > buffer.length) buffer = new byte[nBytes];
366 in.readFully(buffer, 0, nBytes);
    [all...]
  /hardware/qcom/media/msm8974/mm-core/omxcore/inc/
OMX_QCOMExtns.h 364 OMX_U32 nBytes; /** The number of bytes filled in to the buffer */
  /external/libvncserver/rfb/
rfbproto.h 719 uint32_t nBytes;
884 uint32_t nBytes;
    [all...]
  /external/pdfium/third_party/lcms2-2.6/src/
cmstypes.c     [all...]
  /external/valgrind/VEX/switchback/
test_bzip2.c     [all...]
  /external/valgrind/exp-sgcheck/tests/
hackedbz2.c     [all...]
  /external/valgrind/memcheck/tests/
origin5-bz2.c     [all...]

Completed in 942 milliseconds

1 2