Searched refs:drp (Results 1 - 6 of 6) sorted by relevance
/third_party/skia/tools/skdiff/ |
H A D | skdiff_main.cpp | 171 void add (const DiffRecord& drp) { in add() 174 if (drp.fBase.fFilename.equals(drp.fComparison.fFilename)) { in add() 175 fResultsOfType[drp.fResult].push_back(drp.fBase.fFilename); in add() 178 blame.append(drp.fBase.fFilename); in add() 180 blame.append(drp.fComparison.fFilename); in add() 182 fResultsOfType[drp.fResult].push_back(std::move(blame)); in add() 184 switch (drp.fResult) { in add() 196 if (drp in add() 313 AutoReleasePixels(DiffRecord* drp) AutoReleasePixels() argument 340 get_bounds(DiffRecord& drp) get_bounds() argument 406 DiffRecord drp; create_diff_images() local 510 DiffRecord drp; create_diff_images() local 531 DiffRecord drp; create_diff_images() local [all...] |
H A D | skdiff_utils.cpp | 142 void create_and_write_diff_image(DiffRecord* drp, in create_and_write_diff_image() argument 147 const int w = drp->fBase.fBitmap.width(); in create_and_write_diff_image() 148 const int h = drp->fBase.fBitmap.height(); in create_and_write_diff_image() 150 if (w != drp->fComparison.fBitmap.width() || h != drp->fComparison.fBitmap.height()) { in create_and_write_diff_image() 151 drp->fResult = DiffRecord::kDifferentSizes_Result; in create_and_write_diff_image() 153 drp->fDifference.fBitmap.allocN32Pixels(w, h); in create_and_write_diff_image() 155 drp->fWhite.fBitmap.allocN32Pixels(w, h); in create_and_write_diff_image() 157 SkASSERT(DiffRecord::kUnknown_Result == drp->fResult); in create_and_write_diff_image() 158 compute_diff(drp, dm in create_and_write_diff_image() [all...] |
H A D | skdiff_utils.h | 47 void create_and_write_diff_image(DiffRecord* drp,
|
/third_party/libsnd/src/GSM610/ |
H A D | decode.c | 46 int16_t *drp = S->dp0 + 120 ; in Gsm_Decoder() local 50 Gsm_Long_Term_Synthesis_Filtering (S, *Ncr, *bcr, erp, drp) ; in Gsm_Decoder() 52 for (k = 0 ; k <= 39 ; k++) wt [j * 40 + k] = drp [k] ; in Gsm_Decoder()
|
H A D | gsm610_priv.h | 253 int16_t * drp) ; /* [-120..-1] IN, [0..40] OUT */ 272 int16_t * drp, /* received d [0...39] IN */
|
H A D | long_term.c | 896 register int16_t * drp /* [-120..-1] IN, [-120..40] OUT */) in Gsm_Long_Term_Synthesis_Filtering() 917 * signal drp [0..39] in Gsm_Long_Term_Synthesis_Filtering() 922 { drpp = GSM_MULT_R (brp, drp [k - Nr]) ; in Gsm_Long_Term_Synthesis_Filtering() 923 drp [k] = GSM_ADD (erp [k], drpp) ; in Gsm_Long_Term_Synthesis_Filtering() 928 * drp [-1..-120] in Gsm_Long_Term_Synthesis_Filtering() 931 for (k = 0 ; k <= 119 ; k++) drp [-120 + k] = drp [-80 + k] ; in Gsm_Long_Term_Synthesis_Filtering()
|
Completed in 5 milliseconds