X265_MALLOC        15 source/common/bitstream.cpp     m_fifo = X265_MALLOC(uint8_t, MIN_FIFO_SIZE);
X265_MALLOC        28 source/common/bitstream.cpp         uint8_t *temp = X265_MALLOC(uint8_t, m_byteAlloc * 2);
X265_MALLOC       283 source/common/common.cpp     buf = X265_MALLOC(char, fSize + 2);
X265_MALLOC       815 source/common/param.cpp         p->rc.zones = X265_MALLOC(x265_zone, p->rc.zoneCount);
X265_MALLOC      1474 source/common/param.cpp     buf = s = X265_MALLOC(char, MAXPARAMSIZE);
X265_MALLOC       197 source/common/quant.cpp     m_resiDctCoeff = X265_MALLOC(int16_t, MAX_TR_SIZE * MAX_TR_SIZE * 2);
X265_MALLOC       199 source/common/quant.cpp     m_fencShortBuf = X265_MALLOC(int16_t, MAX_TR_SIZE * MAX_TR_SIZE);
X265_MALLOC       206 source/common/quant.cpp     m_frameNr = X265_MALLOC(NoiseReduction, param.frameNumThreads);
X265_MALLOC       146 source/common/scalinglist.cpp             m_scalingListCoef[sizeId][listId] = X265_MALLOC(int32_t, X265_MIN(MAX_MATRIX_COEF_NUM, s_numCoefPerSize[sizeId]));
X265_MALLOC       150 source/common/scalinglist.cpp                 m_quantCoef[sizeId][listId][rem] = X265_MALLOC(int32_t, s_numCoefPerSize[sizeId]);
X265_MALLOC       151 source/common/scalinglist.cpp                 m_dequantCoef[sizeId][listId][rem] = X265_MALLOC(int32_t, s_numCoefPerSize[sizeId]);
X265_MALLOC       506 source/common/threadpool.cpp     m_workers = X265_MALLOC(WorkerThread, numThreads);
X265_MALLOC       512 source/common/threadpool.cpp     m_jpTable = X265_MALLOC(JobProvider*, maxProviders);
X265_MALLOC        38 source/common/wavefront.cpp     m_internalDependencyBitmap = X265_MALLOC(uint32_t, m_numWords);
X265_MALLOC        42 source/common/wavefront.cpp     m_externalDependencyBitmap = X265_MALLOC(uint32_t, m_numWords);
X265_MALLOC        90 source/encoder/analysis.cpp     cacheCost = X265_MALLOC(uint64_t, costArrSize);
X265_MALLOC        44 source/encoder/bitcost.cpp             s_costs[qp] = X265_MALLOC(uint16_t, 4 * BC_MAX_MV + 1) + 2 * BC_MAX_MV;
X265_MALLOC        64 source/encoder/bitcost.cpp                 s_fpelMvCosts[qp][j] = X265_MALLOC(uint16_t, BC_MAX_MV + 1) + (BC_MAX_MV >> 1);
X265_MALLOC        99 source/encoder/bitcost.cpp         s_bitsizes = X265_MALLOC(float, 4 * BC_MAX_MV + 1) + 2 * BC_MAX_MV;
X265_MALLOC        99 source/encoder/encoder.cpp     char *output = X265_MALLOC(char, strlen(input) + strlen(suffix) + 1);
X265_MALLOC       244 source/encoder/encoder.cpp         m_offsetEmergency = (uint16_t(*)[MAX_NUM_TR_CATEGORIES][MAX_NUM_TR_COEFFS])X265_MALLOC(uint16_t, MAX_NUM_TR_CATEGORIES * MAX_NUM_TR_COEFFS * (QP_MAX_MAX - QP_MAX_SPEC));
X265_MALLOC      1053 source/encoder/encoder.cpp                     frameEnc->m_encData->m_meBuffer[i] = X265_MALLOC(uint32_t, frameEnc->m_reconPic->m_stride * (maxHeight + (2 * padY)));
X265_MALLOC      1943 source/encoder/encoder.cpp             char *buffer = X265_MALLOC(char, strlen(opts) + strlen(PFX(version_str)) +
X265_MALLOC      2937 source/encoder/encoder.cpp         tempBuf = X265_MALLOC(uint8_t, depthBytes * 3);
X265_MALLOC      2969 source/encoder/encoder.cpp             uint8_t *tempLumaBuf = X265_MALLOC(uint8_t, analysis->numCUsInFrame * scaledNumPartition);
X265_MALLOC      3001 source/encoder/encoder.cpp         tempBuf = X265_MALLOC(uint8_t, depthBytes * numBuf);
X265_MALLOC      3026 source/encoder/encoder.cpp                     mvpIdx[i] = X265_MALLOC(uint8_t, depthBytes);
X265_MALLOC      3027 source/encoder/encoder.cpp                     refIdx[i] = X265_MALLOC(int8_t, depthBytes);
X265_MALLOC      3028 source/encoder/encoder.cpp                     mv[i] = X265_MALLOC(MV, depthBytes);
X265_MALLOC      3094 source/encoder/encoder.cpp                     uint8_t *tempLumaBuf = X265_MALLOC(uint8_t, analysis->numCUsInFrame * scaledNumPartition);
X265_MALLOC      3144 source/encoder/encoder.cpp     tempBuf = X265_MALLOC(uint8_t, depthBytes);
X265_MALLOC      3146 source/encoder/encoder.cpp     tempdistBuf = X265_MALLOC(sse_t, depthBytes);
X265_MALLOC      3192 source/encoder/encoder.cpp             tempMVBuf[i] = X265_MALLOC(MV, depthBytes);
X265_MALLOC      3195 source/encoder/encoder.cpp             tempMvpBuf[i] = X265_MALLOC(int, depthBytes);
X265_MALLOC      3198 source/encoder/encoder.cpp             tempRefBuf[i] = X265_MALLOC(int32_t, depthBytes);
X265_MALLOC      3202 source/encoder/encoder.cpp         tempModeBuf = X265_MALLOC(uint8_t, depthBytes);
X265_MALLOC       119 source/encoder/frameencoder.cpp     m_sliceBaseRow = X265_MALLOC(uint32_t, m_param->maxSlices + 1);
X265_MALLOC       148 source/encoder/frameencoder.cpp         m_nr = X265_MALLOC(NoiseReduction, 1);
X265_MALLOC       178 source/encoder/frameencoder.cpp     m_ctuGeomMap = X265_MALLOC(uint32_t, m_numRows * m_numCols);
X265_MALLOC       179 source/encoder/frameencoder.cpp     m_cuGeoms = X265_MALLOC(CUGeom, allocGeoms * CUGeom::MAX_GEOMS);
X265_MALLOC       583 source/encoder/frameencoder.cpp         m_substreamSizes = X265_MALLOC(uint32_t, numSubstreams);
X265_MALLOC       193 source/encoder/framefilter.cpp         m_ssimBuf = X265_MALLOC(int, 8 * (m_param->sourceWidth / 4 + 3));
X265_MALLOC      1248 source/encoder/motion.cpp             meScratchBuffer = X265_MALLOC(int16_t, scratchSize);
X265_MALLOC        57 source/encoder/nal.cpp     other.m_buffer = X265_MALLOC(uint8_t, m_allocSize);
X265_MALLOC        72 source/encoder/nal.cpp         uint8_t *temp = X265_MALLOC(uint8_t, nextSize);
X265_MALLOC       186 source/encoder/nal.cpp         uint8_t *temp = X265_MALLOC(uint8_t, estSize);
X265_MALLOC        96 source/encoder/ratecontrol.cpp     char *output = X265_MALLOC(char, strlen(input) + strlen(suffix) + 1);
X265_MALLOC       531 source/encoder/ratecontrol.cpp             m_rce2Pass = X265_MALLOC(RateControlEntry, m_numEntries);
X265_MALLOC       537 source/encoder/ratecontrol.cpp             m_encOrder = X265_MALLOC(int, m_numEntries);
X265_MALLOC       670 source/encoder/ratecontrol.cpp                 m_cuTreeStats.qpBuffer[0] = X265_MALLOC(uint16_t, m_ncu * 4 * sizeof(uint16_t));
X265_MALLOC       672 source/encoder/ratecontrol.cpp                     m_cuTreeStats.qpBuffer[1] = X265_MALLOC(uint16_t, m_ncu * 4 * sizeof(uint16_t));
X265_MALLOC       676 source/encoder/ratecontrol.cpp                 m_cuTreeStats.qpBuffer[0] = X265_MALLOC(uint16_t, m_ncu * sizeof(uint16_t));
X265_MALLOC       678 source/encoder/ratecontrol.cpp                     m_cuTreeStats.qpBuffer[1] = X265_MALLOC(uint16_t, m_ncu * sizeof(uint16_t));
X265_MALLOC        64 source/encoder/reference.cpp     numSliceWeightedRows = X265_MALLOC(uint32_t, p.maxSlices);
X265_MALLOC        97 source/encoder/reference.cpp                     weightBuffer[c] = X265_MALLOC(pixel, stride * padheight);
X265_MALLOC       464 source/encoder/slicetype.cpp     wbuffer[0] = X265_MALLOC(pixel, 4 * planesize);
X265_MALLOC       681 source/encoder/slicetype.cpp     m_scratch = X265_MALLOC(int, m_tld[0].widthInCU);
X265_MALLOC       241 source/encoder/weightPrediction.cpp     pixel *mcbuf = X265_MALLOC(pixel, 2 * fencPic->m_stride * fencPic->m_picHeight);
X265_MALLOC        83 source/input/y4m.cpp             buf[q] = X265_MALLOC(char, framesize);
X265_MALLOC        91 source/input/yuv.cpp         buf[i] = X265_MALLOC(char, framesize);
X265_MALLOC       610 source/x265.cpp         errorBuf = X265_MALLOC(int16_t, param->sourceWidth + 1);