Searched refs:drp (Results 1 – 12 of 12) sorted by relevance
/third_party/skia/tools/skdiff/ |
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.fFractionDifference * 100 > fMaxMismatchPercent) { in add() 197 fMaxMismatchPercent = drp.fFractionDifference * 100; in add() 199 mismatchValue = MAX3(drp.fMaxMismatchR, drp.fMaxMismatchG, in add() [all …]
|
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, dmp, colorThreshold); in create_and_write_diff_image() 159 SkASSERT(DiffRecord::kUnknown_Result != drp->fResult); in create_and_write_diff_image() [all …]
|
D | skdiff_utils.h | 47 void create_and_write_diff_image(DiffRecord* drp,
|
/third_party/flutter/skia/tools/skdiff/ |
D | skdiff_main.cpp | 182 void add (DiffRecord* drp) { in add() 185 if (drp->fBase.fFilename.equals(drp->fComparison.fFilename)) { in add() 186 fResultsOfType[drp->fResult].push_back(new SkString(drp->fBase.fFilename)); in add() 189 blame->append(drp->fBase.fFilename); in add() 191 blame->append(drp->fComparison.fFilename); in add() 193 fResultsOfType[drp->fResult].push_back(blame); in add() 195 switch (drp->fResult) { in add() 207 if (drp->fFractionDifference * 100 > fMaxMismatchPercent) { in add() 208 fMaxMismatchPercent = drp->fFractionDifference * 100; in add() 210 mismatchValue = MAX3(drp->fMaxMismatchR, drp->fMaxMismatchG, in add() [all …]
|
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, dmp, colorThreshold); in create_and_write_diff_image() 159 SkASSERT(DiffRecord::kUnknown_Result != drp->fResult); in create_and_write_diff_image() [all …]
|
D | skdiff_utils.h | 47 void create_and_write_diff_image(DiffRecord* drp,
|
/third_party/libsnd/src/GSM610/ |
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()
|
D | gsm610_priv.h | 253 int16_t * drp) ; /* [-120..-1] IN, [0..40] OUT */ 272 int16_t * drp, /* received d [0...39] IN */
|
D | long_term.c | 896 register int16_t * drp /* [-120..-1] IN, [-120..40] OUT */) in Gsm_Long_Term_Synthesis_Filtering() argument 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() 931 for (k = 0 ; k <= 119 ; k++) drp [-120 + k] = drp [-80 + k] ; in Gsm_Long_Term_Synthesis_Filtering()
|
/third_party/gstreamer/gstplugins_bad/ext/sctp/usrsctp/usrsctplib/netinet/ |
D | sctp_output.c | 12240 struct sctp_pktdrop_chunk *drp; local 12321 drp = mtod(chk->data, struct sctp_pktdrop_chunk *); 12322 if (drp == NULL) { 12331 drp->ch.chunk_flags = SCTP_PACKET_TRUNCATED; 12332 drp->trunc_len = htons(fullsz); 12340 drp->ch.chunk_flags = 0; 12341 drp->trunc_len = htons(0); 12344 drp->ch.chunk_flags |= SCTP_BADCRC; 12357 drp->ch.chunk_type = SCTP_PACKET_DROPPED; 12358 drp->ch.chunk_length = htons(chk->send_size); [all …]
|
/third_party/skia/third_party/externals/icu/source/data/unit/ |
D | sv.txt | 1880 dnam{"drp"} 1881 one{"{0} drp"} 1882 other{"{0} drp"}
|
/third_party/icu/icu4c/source/data/unit/ |
D | sv.txt | 1880 dnam{"drp"} 1881 one{"{0} drp"} 1882 other{"{0} drp"}
|