Home
last modified time | relevance | path

Searched refs:Cb (Results 1 – 25 of 100) sorted by relevance

1234

/external/llvm-project/compiler-rt/lib/scudo/standalone/
Dquarantine.h78 void enqueue(Callback Cb, void *Ptr, uptr Size) { in enqueue() argument
81 reinterpret_cast<QuarantineBatch *>(Cb.allocate(sizeof(*B))); in enqueue()
202 void put(CacheT *C, Callback Cb, Node *Ptr, uptr Size) { in put() argument
203 C->enqueue(Cb, Ptr, Size); in put()
205 drain(C, Cb); in put()
208 void NOINLINE drain(CacheT *C, Callback Cb) { in drain() argument
214 recycle(atomic_load_relaxed(&MinSize), Cb); in drain()
217 void NOINLINE drainAndRecycle(CacheT *C, Callback Cb) { in drainAndRecycle() argument
223 recycle(0, Cb); in drainAndRecycle()
253 void NOINLINE recycle(uptr MinSize, Callback Cb) { in recycle() argument
[all …]
/external/scudo/standalone/
Dquarantine.h78 void enqueue(Callback Cb, void *Ptr, uptr Size) { in enqueue() argument
81 reinterpret_cast<QuarantineBatch *>(Cb.allocate(sizeof(*B))); in enqueue()
202 void put(CacheT *C, Callback Cb, Node *Ptr, uptr Size) { in put() argument
203 C->enqueue(Cb, Ptr, Size); in put()
205 drain(C, Cb); in put()
208 void NOINLINE drain(CacheT *C, Callback Cb) { in drain() argument
214 recycle(atomic_load_relaxed(&MinSize), Cb); in drain()
217 void NOINLINE drainAndRecycle(CacheT *C, Callback Cb) { in drainAndRecycle() argument
223 recycle(0, Cb); in drainAndRecycle()
253 void NOINLINE recycle(uptr MinSize, Callback Cb) { in recycle() argument
[all …]
/external/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DCheckerContext.h257 const NoteTag *getNoteTag(NoteTag::Callback &&Cb, bool IsPrunable = false) {
258 return Eng.getNoteTags().makeNoteTag(std::move(Cb), IsPrunable);
269 *getNoteTag(std::function<std::string(PathSensitiveBugReport &)> &&Cb,
272 [Cb](BugReporterContext &,
273 PathSensitiveBugReport &BR) { return Cb(BR); },
284 const NoteTag *getNoteTag(std::function<std::string()> &&Cb,
286 return getNoteTag([Cb](BugReporterContext &,
287 PathSensitiveBugReport &) { return Cb(); },
312 std::function<void(PathSensitiveBugReport &BR, llvm::raw_ostream &OS)> &&Cb,
315 [Cb](PathSensitiveBugReport &BR) -> std::string {
[all …]
/external/llvm-project/compiler-rt/lib/scudo/standalone/tests/
Dquarantine_test.cpp29 static QuarantineCallback Cb; variable
33 Cb.deallocate(Batch); in deallocateCache()
84 Cache.enqueue(Cb, FakePtr, BlockSize); in TEST()
104 From.enqueue(Cb, FakePtr, BlockSize); in TEST()
107 Cache.enqueue(Cb, FakePtr, BlockSize); in TEST()
134 From.enqueue(Cb, FakePtr, BlockSize); in TEST()
135 Cache.enqueue(Cb, FakePtr, BlockSize); in TEST()
165 From.enqueue(Cb, FakePtr, BlockSize); in TEST()
207 Quarantine.put(&Cache, Cb, FakePtr, LargeBlockSize); in TEST()
214 Quarantine.drainAndRecycle(&Cache, Cb); in TEST()
[all …]
/external/scudo/standalone/tests/
Dquarantine_test.cpp29 static QuarantineCallback Cb; variable
33 Cb.deallocate(Batch); in deallocateCache()
84 Cache.enqueue(Cb, FakePtr, BlockSize); in TEST()
104 From.enqueue(Cb, FakePtr, BlockSize); in TEST()
107 Cache.enqueue(Cb, FakePtr, BlockSize); in TEST()
134 From.enqueue(Cb, FakePtr, BlockSize); in TEST()
135 Cache.enqueue(Cb, FakePtr, BlockSize); in TEST()
165 From.enqueue(Cb, FakePtr, BlockSize); in TEST()
207 Quarantine.put(&Cache, Cb, FakePtr, LargeBlockSize); in TEST()
214 Quarantine.drainAndRecycle(&Cache, Cb); in TEST()
[all …]
/external/pdfium/third_party/libtiff/
Dtif_color.c181 TIFFYCbCrtoRGB(TIFFYCbCrToRGB *ycbcr, uint32 Y, int32 Cb, int32 Cr, in TIFFYCbCrtoRGB() argument
188 Cb = CLAMP(Cb, 0, 255); in TIFFYCbCrtoRGB()
194 + (int)((ycbcr->Cb_g_tab[Cb] + ycbcr->Cr_g_tab[Cr]) >> SHIFT); in TIFFYCbCrtoRGB()
196 i = ycbcr->Y_tab[Y] + ycbcr->Cb_b_tab[Cb]; in TIFFYCbCrtoRGB()
277 int32 Cb = (int32)CLAMPw(Code2V(x, refBlackWhite[2] - 128.0F, in TIFFYCbCrToRGBInit() local
282 ycbcr->Cb_b_tab[i] = (int32)((D3*Cb + ONE_HALF)>>SHIFT); in TIFFYCbCrToRGBInit()
284 ycbcr->Cb_g_tab[i] = D4*Cb + ONE_HALF; in TIFFYCbCrToRGBInit()
Dtif_getimage.c1828 TIFFYCbCrtoRGB(img->ycbcr, (Y), Cb, Cr, &r, &g, &b); \
1856 int32 Cb, Cr; in putcontig8bitYCbCrGenericTile() local
1873 Cb = pp in putcontig8bitYCbCrGenericTile()
1879 Cb = pp[16]; in putcontig8bitYCbCrGenericTile()
1925 int32 Cb = pp[16]; in DECLAREContigPutFunc() local
1960 int32 Cb = pp[16]; in DECLAREContigPutFunc() local
2028 int32 Cb = pp[8]; in DECLAREContigPutFunc() local
2051 int32 Cb = pp[8]; in DECLAREContigPutFunc() local
2105 int32 Cb = pp[4]; in DECLAREContigPutFunc() local
2120 int32 Cb = pp[4]; in DECLAREContigPutFunc() local
[all …]
/external/igt-gpu-tools/assembler/doc/examples/
Dpacked_yuv_wm.g4a97 * G = Clamp ( 1.164(Y-16/255) - 0.813(Cr-128/255) - 0.392(Cb-128/255), 0, 1)
98 * B = Clamp ( 1.164(Y-16/255) + 2.017(Cb-128/255), 0, 1)
102 * Cb is g16, g17.
112 /* Cb = Cb - 128 / 255 */
122 /* acc += Cb * -0.392 */
126 /* acc = Cb * 2.017 */
/external/libjpeg-turbo/simd/i386/
Djdcolext-mmx.asm100 movq mm5, MMWORD [ebx] ; mm5=Cb(01234567)
109 pand mm4, mm5 ; mm4=Cb(0246)=CbE
110 psrlw mm5, BYTE_BIT ; mm5=Cb(1357)=CbO
121 ; G = Y - 0.34414 * Cb - 0.71414 * Cr
122 ; B = Y + 1.77200 * Cb
126 ; G = Y - 0.34414 * Cb + 0.28586 * Cr - Cr
127 ; B = Y - 0.22800 * Cb + Cb + Cb
Djdcolext-sse2.asm100 movdqa xmm5, XMMWORD [ebx] ; xmm5=Cb(0123456789ABCDEF)
109 pand xmm4, xmm5 ; xmm4=Cb(02468ACE)=CbE
110 psrlw xmm5, BYTE_BIT ; xmm5=Cb(13579BDF)=CbO
121 ; G = Y - 0.34414 * Cb - 0.71414 * Cr
122 ; B = Y + 1.77200 * Cb
126 ; G = Y - 0.34414 * Cb + 0.28586 * Cr - Cr
127 ; B = Y - 0.22800 * Cb + Cb + Cb
Djdcolext-avx2.asm101 vmovdqu ymm5, YMMWORD [ebx] ; ymm5=Cb(0123456789ABCDEFGHIJKLMNOPQRSTUV)
109 vpand ymm4, ymm0, ymm5 ; ymm4=Cb(02468ACEGIKMOQSU)=CbE
110 vpsrlw ymm5, ymm5, BYTE_BIT ; ymm5=Cb(13579BDFHJLNPRTV)=CbO
121 ; G = Y - 0.34414 * Cb - 0.71414 * Cr
122 ; B = Y + 1.77200 * Cb
126 ; G = Y - 0.34414 * Cb + 0.28586 * Cr - Cr
127 ; B = Y - 0.22800 * Cb + Cb + Cb
/external/llvm-project/clang/include/clang/StaticAnalyzer/Core/BugReporter/
DBugReporter.h735 const Callback Cb; variable
738 NoteTag(Callback &&Cb, bool IsPrunable) in NoteTag() argument
739 : ProgramPointTag(&Kind), Cb(std::move(Cb)), IsPrunable(IsPrunable) {} in NoteTag()
748 std::string Msg = Cb(BRC, R); in generateMessage()
769 const NoteTag *makeNoteTag(Callback &&Cb, bool IsPrunable = false) {
772 std::unique_ptr<NoteTag> T(new NoteTag(std::move(Cb), IsPrunable));
/external/pcre/dist2/testdata/
Dtestinput2270 /a\Cb/utf
75 /a\C\Cb/utf
94 /a\Cb/utf
Dtestoutput22-16128 /a\Cb/utf
136 /a\C\Cb/utf
165 /a\Cb/utf
Dtestoutput22-32126 /a\Cb/utf
134 /a\C\Cb/utf
163 /a\Cb/utf
Dtestoutput22-8130 /a\Cb/utf
138 /a\C\Cb/utf
167 /a\Cb/utf
Dtestinput235 /a\Cb/
Dtestoutput235 /a\Cb/
/external/llvm-project/clang/test/SemaCXX/
Derr_typecheck_assign_const_filecheck.cpp45 const B Cb; member
69 Ca.Cb.Cc.Cd.Ce.Snum = 5; in test1()
83 a.Cb.c.d.e.num = 5; in test2()
/external/clang/test/SemaCXX/
Derr_typecheck_assign_const_filecheck.cpp45 const B Cb; member
69 Ca.Cb.Cc.Cd.Ce.Snum = 5; in test1()
83 a.Cb.c.d.e.num = 5; in test2()
/external/libjpeg-turbo/simd/x86_64/
Djdcolext-sse2.asm88 movdqa xmm5, XMMWORD [rbx] ; xmm5=Cb(0123456789ABCDEF)
97 pand xmm4, xmm5 ; xmm4=Cb(02468ACE)=CbE
98 psrlw xmm5, BYTE_BIT ; xmm5=Cb(13579BDF)=CbO
109 ; G = Y - 0.34414 * Cb - 0.71414 * Cr
110 ; B = Y + 1.77200 * Cb
114 ; G = Y - 0.34414 * Cb + 0.28586 * Cr - Cr
115 ; B = Y - 0.22800 * Cb + Cb + Cb
Djdcolext-avx2.asm89 vmovdqu ymm5, YMMWORD [rbx] ; ymm5=Cb(0123456789ABCDEFGHIJKLMNOPQRSTUV)
97 vpand ymm4, ymm0, ymm5 ; ymm4=Cb(02468ACEGIKMOQSU)=CbE
98 vpsrlw ymm5, ymm5, BYTE_BIT ; ymm5=Cb(13579BDFHJLNPRTV)=CbO
109 ; G = Y - 0.34414 * Cb - 0.71414 * Cr
110 ; B = Y + 1.77200 * Cb
114 ; G = Y - 0.34414 * Cb + 0.28586 * Cr - Cr
115 ; B = Y - 0.22800 * Cb + Cb + Cb
/external/libjpeg-turbo/
Dwizard.txt84 For example, to create a separate table for each of Y,Cb,Cr, you could
167 1 2; # Cb and Cr in second scan
172 # Interleaved DC scan for Y,Cb,Cr:
177 1: 1-63, 0, 0 ; # All AC coefficients for Cb
185 # Initial DC scan for Y,Cb,Cr (lowest bit not sent)
189 # Send all Cr,Cb AC coefficients, minus lowest bit:
191 # but note we send Cr first since eye is least sensitive to Cb)
/external/llvm-project/clang/lib/StaticAnalyzer/Checkers/
DStackAddrEscapeChecker.cpp326 CallBack Cb(Ctx); in checkEndFunction() local
328 Cb); in checkEndFunction()
330 if (Cb.V.empty()) in checkEndFunction()
346 for (const auto &P : Cb.V) { in checkEndFunction()
/external/skia/src/core/
DSkYUVMath.cpp264 const float Cb = 0.5f / (1.0f - Kr); in make_rgb_to_yuv_matrix() local
289 scale3(mx + 10, Cb * scaleUV); in make_rgb_to_yuv_matrix()

1234