HomeSort by relevance Sort by last modified time
    Searched defs:bs (Results 1 - 25 of 222) sorted by null

1 2 3 4 5 6 7 8 9

  /external/mesa3d/src/gallium/drivers/freedreno/a2xx/
fd2_zsa.c 73 const struct pipe_stencil_state *bs = &cso->stencil[1]; local
77 A2XX_RB_DEPTHCONTROL_STENCILFUNC_BF(bs->func) | /* maps 1:1 */
78 A2XX_RB_DEPTHCONTROL_STENCILFAIL_BF(fd_stencil_op(bs->fail_op)) |
79 A2XX_RB_DEPTHCONTROL_STENCILZPASS_BF(fd_stencil_op(bs->zpass_op)) |
80 A2XX_RB_DEPTHCONTROL_STENCILZFAIL_BF(fd_stencil_op(bs->zfail_op));
83 A2XX_RB_STENCILREFMASK_STENCILWRITEMASK(bs->writemask) |
84 A2XX_RB_STENCILREFMASK_STENCILMASK(bs->valuemask);
  /external/mesa3d/src/gallium/drivers/freedreno/a3xx/
fd3_zsa.c 77 const struct pipe_stencil_state *bs = &cso->stencil[1]; local
81 A3XX_RB_STENCIL_CONTROL_FUNC_BF(bs->func) | /* maps 1:1 */
82 A3XX_RB_STENCIL_CONTROL_FAIL_BF(fd_stencil_op(bs->fail_op)) |
83 A3XX_RB_STENCIL_CONTROL_ZPASS_BF(fd_stencil_op(bs->zpass_op)) |
84 A3XX_RB_STENCIL_CONTROL_ZFAIL_BF(fd_stencil_op(bs->zfail_op));
87 A3XX_RB_STENCILREFMASK_STENCILWRITEMASK(bs->writemask) |
88 A3XX_RB_STENCILREFMASK_STENCILMASK(bs->valuemask);
  /external/libcxx/test/std/localization/locales/locale.convenience/conversions/conversions.string/
to_bytes.pass.cpp 40 std::string bs = myconv.to_bytes(ws[0]); local
41 assert(bs == "\xE1\x80\x85\x00");
42 bs = myconv.to_bytes(ws.c_str());
43 assert(bs == "\xE1\x80\x85\x00");
44 bs = myconv.to_bytes(ws);
45 assert(bs == "\xE1\x80\x85\x00");
46 bs = myconv.to_bytes(ws.data(), ws.data() + ws.size());
47 assert(bs == "\xE1\x80\x85\x00");
48 bs = myconv.to_bytes(L"");
49 assert(bs.size() == 0)
59 std::string bs = myconv.to_bytes(ws[0]); local
    [all...]
ctor_err_string.pass.cpp 54 std::string bs = myconv.to_bytes(L"\xDA83"); local
55 assert(bs == "byte error");
69 std::string bs = myconv.to_bytes(L"\xDA83"); local
70 assert(bs == "byte error");
converted.pass.cpp 39 std::string bs = myconv.to_bytes(L"\x1005"); local
41 bs = myconv.to_bytes(L"\x1005\x65");
56 std::string bs = myconv.to_bytes(L"\x40003"); local
58 bs = myconv.to_bytes(L"\x40003\x65");
  /external/mesa3d/src/gallium/drivers/freedreno/a4xx/
fd4_zsa.c 79 const struct pipe_stencil_state *bs = &cso->stencil[1]; local
83 A4XX_RB_STENCIL_CONTROL_FUNC_BF(bs->func) | /* maps 1:1 */
84 A4XX_RB_STENCIL_CONTROL_FAIL_BF(fd_stencil_op(bs->fail_op)) |
85 A4XX_RB_STENCIL_CONTROL_ZPASS_BF(fd_stencil_op(bs->zpass_op)) |
86 A4XX_RB_STENCIL_CONTROL_ZFAIL_BF(fd_stencil_op(bs->zfail_op));
89 A4XX_RB_STENCILREFMASK_BF_STENCILWRITEMASK(bs->writemask) |
90 A4XX_RB_STENCILREFMASK_BF_STENCILMASK(bs->valuemask);
  /external/mesa3d/src/gallium/drivers/freedreno/a5xx/
fd5_zsa.c 94 const struct pipe_stencil_state *bs = &cso->stencil[1]; local
98 A5XX_RB_STENCIL_CONTROL_FUNC_BF(bs->func) | /* maps 1:1 */
99 A5XX_RB_STENCIL_CONTROL_FAIL_BF(fd_stencil_op(bs->fail_op)) |
100 A5XX_RB_STENCIL_CONTROL_ZPASS_BF(fd_stencil_op(bs->zpass_op)) |
101 A5XX_RB_STENCIL_CONTROL_ZFAIL_BF(fd_stencil_op(bs->zfail_op));
103 A5XX_RB_STENCILREFMASK_BF_STENCILWRITEMASK(bs->writemask) |
104 A5XX_RB_STENCILREFMASK_BF_STENCILMASK(bs->valuemask);
  /external/testng/src/main/java/org/testng/internal/annotations/
AnnotationHelper.java 58 IConfigurationAnnotation bs = (IConfigurationAnnotation) finder.findAnnotation(ctor, IBeforeSuite.class); local
69 if (bs != null || as != null || bt != null || at != null || bg != null || ag != null
72 result = createConfiguration(bs, as, bt, at, bg, ag, bc, ac, bm, am);
82 IConfigurationAnnotation bs = (IConfigurationAnnotation) finder.findAnnotation(m, IBeforeSuite.class); local
93 if (bs != null || as != null || bt != null || at != null || bg != null || ag != null
96 result = createConfiguration(bs, as, bt, at, bg, ag, bc, ac, bm, am);
103 private static IConfigurationAnnotation createConfiguration(IConfigurationAnnotation bs, IConfigurationAnnotation as,
109 if (bs != null) {
111 finishInitialize(result, bs);
154 private static void finishInitialize(ConfigurationAnnotation result, IConfigurationAnnotation bs) {
    [all...]
  /external/boringssl/src/crypto/x509v3/
v3_bitst.c 113 ASN1_BIT_STRING *bs; local
116 if (!(bs = M_ASN1_BIT_STRING_new())) {
125 if (!ASN1_BIT_STRING_set_bit(bs, bnam->bitnum, 1)) {
127 M_ASN1_BIT_STRING_free(bs);
136 M_ASN1_BIT_STRING_free(bs);
140 return bs;
  /external/testng/src/test/java/test/configuration/
SuiteFactoryOnceSample1Test.java 12 public void bs() { method in class:SuiteFactoryOnceSample1Test
  /external/testng/src/test/java/test/invokedmethodlistener/
Sample.java 31 public void bs() {} method in class:Sample
  /external/u-boot/board/phytec/phycore_rk3288/
som.h 19 unsigned char bs; /* Bits set in previous bytes */ member in struct:rk3288_som
  /external/clang/test/CodeGen/
object-size.cpp 36 struct C { int i; B bs[1]; } *c; member in struct:C
39 gi = __builtin_object_size(&c->bs[0], 0);
41 gi = __builtin_object_size(&c->bs[0], 1);
43 gi = __builtin_object_size(&c->bs[0], 2);
45 gi = __builtin_object_size(&c->bs[0], 3);
48 gi = __builtin_object_size((A*)&c->bs[0], 0);
50 gi = __builtin_object_size((A*)&c->bs[0], 1);
52 gi = __builtin_object_size((A*)&c->bs[0], 2);
54 gi = __builtin_object_size((A*)&c->bs[0], 3);
57 gi = __builtin_object_size(&c->bs[0].buf[0], 0)
    [all...]
  /external/clang/test/CodeGenCXX/
default-arguments.cpp 37 B bs[2]; local
41 B bs[2]; member in struct:C
63 B *bs = new B[2]; local
64 delete bs;
  /external/mesa3d/src/gallium/drivers/svga/
svga_pipe_blend.c 100 struct svga_blend_state *bs)
108 bs->id = util_bitmask_add(svga->blend_object_id_bm);
111 perRT[i].blendEnable = bs->rt[i].blend_enable;
112 perRT[i].srcBlend = bs->rt[i].srcblend;
113 perRT[i].destBlend = bs->rt[i].dstblend;
114 perRT[i].blendOp = bs->rt[i].blendeq;
115 perRT[i].srcBlendAlpha = bs->rt[i].srcblend_alpha;
116 perRT[i].destBlendAlpha = bs->rt[i].dstblend_alpha;
117 perRT[i].blendOpAlpha = bs->rt[i].blendeq_alpha;
118 perRT[i].renderTargetWriteMask = bs->rt[i].writemask
361 struct svga_blend_state *bs = local
    [all...]
  /external/mesa3d/src/intel/vulkan/
genX_gpu_memcpy.c 107 unsigned bs = 16; local
108 bs = gcd_pow2_u64(bs, src_offset);
109 bs = gcd_pow2_u64(bs, dst_offset);
110 bs = gcd_pow2_u64(bs, size);
113 switch (bs) {
138 .BufferPitch = bs,
155 .Component0Control = (bs >= 4) ? VFCOMP_STORE_SRC : VFCOMP_STORE_0
    [all...]
  /external/testng/src/test/java/test/hook/
BaseConfigurable.java 20 public void bs() { method in class:BaseConfigurable
ConfigurableSuccessWithListenerTest.java 20 public void bs() { method in class:ConfigurableSuccessWithListenerTest
  /art/libartbase/base/
bit_string_test.cc 50 BitString bs{};
54 bs.SetAt(i, MakeBitStringChar(i, val));
58 return bs;
71 BitString bs{};
74 bs.SetAt(i,
78 return bs;
82 BitString bs = bit_string; local
83 bs.SetAt(i, MakeBitStringChar(i, val));
84 return bs;
107 BitString bs = MakeBitString() local
154 BitString bs = MakeBitString({MaxForPos<0>(), MaxForPos<1>()}); local
    [all...]
  /external/grpc-grpc-java/protobuf-nano/src/generated/test/javanano/io/grpc/protobuf/nano/
Messages.java 34 // bytes bs = 4;
35 public byte[] bs; field in class:Messages.Message
45 bs = com.google.protobuf.nano.WireFormatNano.EMPTY_BYTES;
62 if (!java.util.Arrays.equals(this.bs, com.google.protobuf.nano.WireFormatNano.EMPTY_BYTES)) {
63 output.writeBytes(4, this.bs);
83 if (!java.util.Arrays.equals(this.bs, com.google.protobuf.nano.WireFormatNano.EMPTY_BYTES)) {
85 .computeBytesSize(4, this.bs);
118 this.bs = input.readBytes();
  /external/icu/icu4c/source/test/perf/usetperf/
usetperf.cpp 50 BitSet bs; member in class:CmdOp
56 bs.clearAll();
59 bs.set((int32_t) cp);
74 if (bs.get((int32_t) cp)) {
  /external/mesa3d/src/gallium/auxiliary/util/
u_format_etc.c 30 const unsigned bw = 4, bh = 4, bs = 8, comps = 4; local
54 src += bs;
  /external/skia/src/compute/hs/gen/
target_cuda.c 310 uint32_t const bs = pow2_ru_u32(m->warps); local
311 uint32_t const msb = msb_idx_u32(bs);
target_glsl.c 302 uint32_t const bs = pow2_ru_u32(m->warps); local
303 uint32_t const msb = msb_idx_u32(bs);
target_opencl.c 288 uint32_t const bs = pow2_ru_u32(m->warps); local
289 uint32_t const msb = msb_idx_u32(bs);

Completed in 721 milliseconds

1 2 3 4 5 6 7 8 9