Searched refs:dataBuf (Results 1 - 10 of 10) sorted by relevance

/external/python/cpython2/PC/os2vacpp/
H A Dgetpathp.c156 char *dataBuf; local
201 dataBuf = malloc(dataSize+1);
202 if (dataBuf==NULL)
213 keyBuf, dataBuf+off, &reqdSize);
217 adjust = strlen(dataBuf+off);
220 dataBuf[off++] = ';';
221 dataBuf[off] = '\0';
227 rc = RegQueryValue(newKey, "", dataBuf+off, &dataSize);
229 if (strlen(dataBuf)==0)
230 free(dataBuf);
[all...]
/external/honggfuzz/
H A Dsancov.c308 uint8_t* dataBuf = NULL; local
440 dataBuf = files_mapFile(covFile, &dataFileSz, &dataFd, false);
441 if (dataBuf == NULL) {
446 munmap(dataBuf, dataFileSz);
473 uint64_t bbAddr = pReadRawBBAddrFunc(dataBuf + pos);
566 uint8_t* dataBuf = NULL; local
602 dataBuf = files_mapFile(covFile, &dataFileSz, &dataFd, false);
603 if (dataBuf == NULL) {
608 munmap(dataBuf, dataFileSz);
618 uint64_t magic = util_getUINT64(dataBuf);
[all...]
/external/webrtc/webrtc/modules/audio_processing/ns/
H A Dns_core.h61 float dataBuf[ANAL_BLOCKL_MAX]; member in struct:NoiseSuppressionC_
H A Dns_core.c102 memset(self->dataBuf, 0, sizeof(float) * ANAL_BLOCKL_MAX);
103 WebRtc_rdft(self->anaLen, 1, self->dataBuf, self->ip, self->wfft);
106 memset(self->dataBuf, 0, sizeof(float) * ANAL_BLOCKL_MAX);
1226 UpdateBuffer(speechFrame[0], self->blockLen, self->anaLen, self->dataBuf);
1238 Windowing(self->window, self->dataBuf, self->anaLen, winData);
/external/python/cpython2/PC/
H A Dgetpathp.c231 TCHAR *dataBuf = NULL; local
306 dataBuf = malloc((dataSize+1) * sizeof(TCHAR));
307 if (dataBuf) {
308 TCHAR *szCur = dataBuf;
346 dataBuf, -1, /* source */
349 free(dataBuf);
351 retval = dataBuf;
/external/python/cpython3/PC/
H A Dgetpathp.c302 WCHAR *dataBuf = NULL; local
378 dataBuf = PyMem_RawMalloc((dataSize+1) * sizeof(WCHAR));
379 if (dataBuf) {
380 WCHAR *szCur = dataBuf;
409 PyMem_RawFree(dataBuf);
414 retval = dataBuf;
/external/deqp/modules/gles31/stress/
H A Des31sVertexAttributeBindingTests.cpp441 std::vector<deUint8> dataBuf (m_spec.bufferOffset + m_spec.bufferStride * GRID_SIZE * GRID_SIZE * 6);
463 memcpy(&dataBuf[m_spec.bufferOffset + m_spec.positionAttrOffset + m_spec.bufferStride * ((y * GRID_SIZE + x) * 6 + v)], positions[v].getPtr(), sizeof(positions[v]));
468 memcpy(&dataBuf[m_spec.bufferOffset + m_spec.colorAttrOffset + m_spec.bufferStride * ((y * GRID_SIZE + x) * 6 + v)], color.getPtr(), sizeof(color));
473 gl.bufferData(GL_ARRAY_BUFFER, (glw::GLsizeiptr)dataBuf.size(), &dataBuf[0], GL_STATIC_DRAW);
/external/deqp/modules/gles31/functional/
H A Des31fVertexAttributeBindingTests.cpp447 std::vector<deUint8> dataBuf (m_spec.bufferOffset + m_spec.bufferStride * GRID_SIZE * GRID_SIZE * 6);
469 memcpy(&dataBuf[m_spec.bufferOffset + m_spec.positionAttrOffset + m_spec.bufferStride * ((y * GRID_SIZE + x) * 6 + v)], positions[v].getPtr(), sizeof(positions[v]));
474 memcpy(&dataBuf[m_spec.bufferOffset + m_spec.colorAttrOffset + m_spec.bufferStride * ((y * GRID_SIZE + x) * 6 + v)], color.getPtr(), sizeof(color));
479 gl.bufferData(GL_ARRAY_BUFFER, (glw::GLsizeiptr)dataBuf.size(), &dataBuf[0], GL_STATIC_DRAW);
/external/python/cpython2/Modules/expat/
H A Dxmlparse.c628 #define dataBuf (parser->m_dataBuf) macro
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);
1186 FREE(dataBuf);
2605 characterDataHandler(handlerArg, dataBuf, 0);
2625 ICHAR *dataPtr = (ICHAR *)dataBuf;
2627 characterDataHandler(handlerArg, dataBuf,
2628 (int)(dataPtr - (ICHAR *)dataBuf));
[all...]
/external/python/cpython3/Modules/expat/
H A Dxmlparse.c628 #define dataBuf (parser->m_dataBuf) macro
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);
1186 FREE(dataBuf);
2605 characterDataHandler(handlerArg, dataBuf, 0);
2625 ICHAR *dataPtr = (ICHAR *)dataBuf;
2627 characterDataHandler(handlerArg, dataBuf,
2628 (int)(dataPtr - (ICHAR *)dataBuf));
[all...]

Completed in 510 milliseconds