/external/boringssl/src/crypto/fipsmodule/modes/ |
H A D | gcm.c | 67 #define PACK(s) ((size_t)(s) << (sizeof(size_t) * 8 - 16)) macro 125 PACK(0x0000), PACK(0x1C20), PACK(0x3840), PACK(0x2460), 126 PACK(0x7080), PACK(0x6CA0), PACK(0x48C0), PACK(0x54E0), 127 PACK( [all...] |
/external/curl/lib/ |
H A D | smb.h | 54 # define PACK macro 58 # define PACK __attribute__((packed)) macro 60 # define PACK macro 111 } PACK; variable in typeref:struct:smb_header 130 } PACK; variable in typeref:struct:smb_negotiate_response 136 } PACK; variable in typeref:struct:andx 150 } PACK; variable in typeref:struct:smb_setup 159 } PACK; variable in typeref:struct:smb_tree_connect 178 } PACK; variable in typeref:struct:smb_nt_create 196 } PACK; variable in typeref:struct:smb_nt_create_response 209 } PACK; variable in typeref:struct:smb_read 226 } PACK; variable in typeref:struct:smb_write 233 } PACK; variable in typeref:struct:smb_close 238 } PACK; variable in typeref:struct:smb_tree_disconnect [all...] |
/external/pdfium/third_party/libtiff/ |
H A D | tif_getimage.c | 1246 #define PACK(r,g,b) \ macro 1465 *cp++ = PACK(pp[0], pp[1], pp[2]); 1528 *cp++ = PACK(img->Bitdepth16To8[wp[0]], 1606 *cp++ = PACK(r, g, b); 1632 *cp++ = PACK(Map[r], Map[g], Map[b]); 1657 UNROLL8(w, NOP, *cp++ = PACK(*r++, *g++, *b++)); 1729 *cp++ = PACK(img->Bitdepth16To8[*wr++], 1801 *cp++ = PACK(r, g, b); 1816 dst = PACK(r, g, b); \ 2295 *cp++ = PACK(d [all...] |
H A D | tif_luv.c | 1251 #define PACK(s,b,f) (((b)<<6)|((s)<<3)|(f)) macro 1252 switch (PACK(td->td_samplesperpixel, td->td_bitspersample, td->td_sampleformat)) { 1253 case PACK(1, 32, SAMPLEFORMAT_IEEEFP): 1255 case PACK(1, 16, SAMPLEFORMAT_VOID): 1256 case PACK(1, 16, SAMPLEFORMAT_INT): 1257 case PACK(1, 16, SAMPLEFORMAT_UINT): 1259 case PACK(1, 8, SAMPLEFORMAT_VOID): 1260 case PACK(1, 8, SAMPLEFORMAT_UINT): 1263 #undef PACK macro 1338 #define PACK( macro 1360 #undef PACK macro [all...] |
/external/skia/src/sksl/ |
H A D | SkSLSPIRVCodeGenerator.cpp | 81 #define PACK(type) fIntrinsicMap[String("pack" #type)] = ALL_GLSL(Pack ## type); \ macro 83 PACK(Snorm4x8); 84 PACK(Unorm4x8); 85 PACK(Snorm2x16); 86 PACK(Unorm2x16); 87 PACK(Half2x16); 88 PACK(Double2x32);
|
/external/skqp/src/sksl/ |
H A D | SkSLSPIRVCodeGenerator.cpp | 81 #define PACK(type) fIntrinsicMap[String("pack" #type)] = ALL_GLSL(Pack ## type); \ macro 83 PACK(Snorm4x8); 84 PACK(Unorm4x8); 85 PACK(Snorm2x16); 86 PACK(Unorm2x16); 87 PACK(Half2x16); 88 PACK(Double2x32);
|
/external/freetype/src/truetype/ |
H A D | ttinterp.c | 630 #undef PACK macro 631 #define PACK( x, y ) ( ( x << 4 ) | y ) macro 640 /* SVTCA y */ PACK( 0, 0 ), 641 /* SVTCA x */ PACK( 0, 0 ), 642 /* SPvTCA y */ PACK( 0, 0 ), 643 /* SPvTCA x */ PACK( 0, 0 ), 644 /* SFvTCA y */ PACK( 0, 0 ), 645 /* SFvTCA x */ PACK( 0, 0 ), 646 /* SPvTL // */ PACK( 2, 0 ), 647 /* SPvTL + */ PACK( 1228 #undef PACK macro [all...] |
/external/mesa3d/prebuilt-intermediates/main/ |
H A D | format_pack.c | 49 #define PACK(SRC, OFFSET, BITS) (((SRC) & MAX_UINT(BITS)) << (OFFSET)) macro 77 d |= PACK(a, 0, 8); 78 d |= PACK(b, 8, 8); 79 d |= PACK(g, 16, 8); 80 d |= PACK(r, 24, 8); 102 d |= PACK(b, 8, 8); 103 d |= PACK(g, 16, 8); 104 d |= PACK(r, 24, 8); 129 d |= PACK(r, 0, 8); 130 d |= PACK( [all...] |