HomeSort by relevance Sort by last modified time
    Searched refs:dataBuf (Results 1 - 11 of 11) sorted by null

  /development/samples/BackupRestore/src/com/example/android/backuprestore/
ExampleAgent.java 220 byte[] dataBuf = new byte[dataSize];
221 data.readEntityData(dataBuf, 0, dataSize);
222 ByteArrayInputStream baStream = new ByteArrayInputStream(dataBuf);
MultiRecordExampleAgent.java 173 byte[] dataBuf = new byte[dataSize];
174 data.readEntityData(dataBuf, 0, dataSize);
175 ByteArrayInputStream instream = new ByteArrayInputStream(dataBuf);
  /frameworks/base/tests/HugeBackup/src/com/android/hugebackup/
HugeAgent.java 232 byte[] dataBuf = new byte[dataSize];
233 data.readEntityData(dataBuf, 0, dataSize);
234 ByteArrayInputStream baStream = new ByteArrayInputStream(dataBuf);
  /external/chromium_org/third_party/webrtc/modules/audio_processing/ns/
ns_core.h 62 float dataBuf[ANAL_BLOCKL_MAX];
ns_core.c 113 memset(inst->dataBuf, 0, sizeof(float) * ANAL_BLOCKL_MAX);
114 WebRtc_rdft(inst->anaLen, 1, inst->dataBuf, inst->ip, inst->wfft);
116 memset(inst->dataBuf, 0, sizeof(float) * ANAL_BLOCKL_MAX);
779 memcpy(inst->dataBuf, inst->dataBuf + inst->blockLen10ms,
781 memcpy(inst->dataBuf + inst->anaLen - inst->blockLen10ms, speechFrame,
797 winData[i] = inst->window[i] * inst->dataBuf[i];
    [all...]
  /external/webrtc/src/modules/audio_processing/ns/
ns_core.h 62 float dataBuf[ANAL_BLOCKL_MAX];
ns_core.c 113 memset(inst->dataBuf, 0, sizeof(float) * ANAL_BLOCKL_MAX);
114 WebRtc_rdft(inst->anaLen, 1, inst->dataBuf, inst->ip, inst->wfft);
116 memset(inst->dataBuf, 0, sizeof(float) * ANAL_BLOCKL_MAX);
783 memcpy(inst->dataBuf, inst->dataBuf + inst->blockLen10ms,
785 memcpy(inst->dataBuf + inst->anaLen - inst->blockLen10ms, fin,
805 winData[i] = inst->window[i] * inst->dataBuf[i];
    [all...]
  /art/runtime/
check_jni.cc 923 static inline const GuardedCopy* FromData(const void* dataBuf) {
924 return reinterpret_cast<const GuardedCopy*>(ActualBuffer(dataBuf));
    [all...]
  /external/deqp/modules/gles31/stress/
es31sVertexAttributeBindingTests.cpp 443 std::vector<deUint8> dataBuf (m_spec.bufferOffset + m_spec.bufferStride * GRID_SIZE * GRID_SIZE * 6);
465 memcpy(&dataBuf[m_spec.bufferOffset + m_spec.positionAttrOffset + m_spec.bufferStride * ((y * GRID_SIZE + x) * 6 + v)], positions[v].getPtr(), sizeof(positions[v]));
470 memcpy(&dataBuf[m_spec.bufferOffset + m_spec.colorAttrOffset + m_spec.bufferStride * ((y * GRID_SIZE + x) * 6 + v)], color.getPtr(), sizeof(color));
475 gl.bufferData(GL_ARRAY_BUFFER, (glw::GLsizeiptr)dataBuf.size(), &dataBuf[0], GL_STATIC_DRAW);
  /external/deqp/modules/gles31/functional/
es31fVertexAttributeBindingTests.cpp 449 std::vector<deUint8> dataBuf (m_spec.bufferOffset + m_spec.bufferStride * GRID_SIZE * GRID_SIZE * 6);
471 memcpy(&dataBuf[m_spec.bufferOffset + m_spec.positionAttrOffset + m_spec.bufferStride * ((y * GRID_SIZE + x) * 6 + v)], positions[v].getPtr(), sizeof(positions[v]));
476 memcpy(&dataBuf[m_spec.bufferOffset + m_spec.colorAttrOffset + m_spec.bufferStride * ((y * GRID_SIZE + x) * 6 + v)], color.getPtr(), sizeof(color));
481 gl.bufferData(GL_ARRAY_BUFFER, (glw::GLsizeiptr)dataBuf.size(), &dataBuf[0], GL_STATIC_DRAW);
    [all...]
  /external/expat/lib/
xmlparse.c 628 #define dataBuf (parser->m_dataBuf)
774 dataBuf = (XML_Char *)MALLOC(INIT_DATA_BUF_SIZE * sizeof(XML_Char));
775 if (dataBuf == NULL) {
783 dataBufEnd = dataBuf + INIT_DATA_BUF_SIZE;
790 FREE(dataBuf);
    [all...]

Completed in 1450 milliseconds