OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:txa
(Results
1 - 2
of
2
) sorted by null
/external/aac/libFDK/src/
FDK_bitbuffer.cpp
229
UINT
txa
= 0x0;
local
243
txa
|= (tx & bitMaskR) << (31 - (i<<1));
244
txa
|= (tx & bitMaskL) >> (31 - (i<<1));
247
return (
txa
>> (32 - numberOfBits)) ;
/external/skia/tests/
ReadPixelsTest.cpp
533
static void compare_textures(skiatest::Reporter* reporter, GrTexture*
txa
, GrTexture* txb) {
534
REPORTER_ASSERT(reporter,
txa
->width() == 2);
535
REPORTER_ASSERT(reporter,
txa
->height() == 2);
538
REPORTER_ASSERT(reporter,
txa
->config() == txb->config());
541
REPORTER_ASSERT(reporter,
txa
->readPixels(0, 0, 2, 2,
txa
->config(), pixelsA));
542
REPORTER_ASSERT(reporter, txb->readPixels(0, 0, 2, 2,
txa
->config(), pixelsB));
Completed in 1112 milliseconds