Home
last modified time | relevance | path

Searched refs:lsbs (Results 1 - 4 of 4) sorted by relevance

/third_party/mesa3d/src/gallium/drivers/r300/compiler/
H A Dr300_fragprog_emit.c73 * @param lsbs The number of least significant bits
75 static unsigned int get_msbs_tex(unsigned int bits, unsigned int lsbs) in get_msbs_tex() argument
77 return (bits >> lsbs) & 0x15; in get_msbs_tex()
80 #define R400_EXT_GET_MSBS(x, lsbs, mask) (((x) >> lsbs) & mask)
/third_party/skia/third_party/externals/freetype/src/sfnt/
H A Dsfwoff2.c1367 FT_Short* lsbs = NULL; in reconstruct_hmtx() local
1396 FT_NEW_ARRAY( lsbs, num_glyphs ) ) in reconstruct_hmtx()
1425 lsbs[i] = lsb; in reconstruct_hmtx()
1442 lsbs[i] = lsb; in reconstruct_hmtx()
1460 WRITE_SHORT( dst, lsbs[i] ); in reconstruct_hmtx()
1461 FT_TRACE6(( "%d ", lsbs[i] )); in reconstruct_hmtx()
1475 FT_FREE( lsbs ); in reconstruct_hmtx()
1482 FT_FREE( lsbs ); in reconstruct_hmtx()
/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/
H A Draw_hash_set.h416 // retval = (v - lsbs) & ~v & msbs = 0x0000000080800000
418 constexpr uint64_t lsbs = 0x0101010101010101ULL;
419 auto x = ctrl ^ (lsbs * hash);
420 return BitMask<uint64_t, kWidth, 3>((x - lsbs) & ~x & msbs);
440 constexpr uint64_t lsbs = 0x0101010101010101ULL;
442 auto res = (~x + (x >> 7)) & ~lsbs;
H A Draw_hash_set_test.cc141 constexpr uint64_t lsbs = 0x0101010101010101ULL; in TEST() local
142 auto x = ctrl ^ (lsbs * hash); in TEST()
143 uint64_t mask = (x - lsbs) & ~x & msbs; in TEST()

Completed in 10 milliseconds