Home
last modified time | relevance | path

Searched refs:scb (Results 1 – 20 of 20) sorted by relevance

/external/swiftshader/third_party/astc-encoder/Source/
Dastc_decompress_symbolic.cpp91 const symbolic_compressed_block* scb, in decompress_symbolic_block() argument
101 if (scb->error_block) in decompress_symbolic_block()
135 if (scb->block_mode < 0) in decompress_symbolic_block()
141 if (scb->block_mode == -2) in decompress_symbolic_block()
146 red = sf16_to_float(unorm16_to_sf16(scb->constant_color[0] & mask)); in decompress_symbolic_block()
147 green = sf16_to_float(unorm16_to_sf16(scb->constant_color[1] & mask)); in decompress_symbolic_block()
148 blue = sf16_to_float(unorm16_to_sf16(scb->constant_color[2] & mask)); in decompress_symbolic_block()
149 alpha = sf16_to_float(unorm16_to_sf16(scb->constant_color[3] & mask)); in decompress_symbolic_block()
175 red = sf16_to_float(scb->constant_color[0]); in decompress_symbolic_block()
176 green = sf16_to_float(scb->constant_color[1]); in decompress_symbolic_block()
[all …]
Dastc_codec_internals.h325 const symbolic_compressed_block* scb,
/external/libnl/lib/route/link/
Dmacsec.c61 uint8_t send_sci, end_station, scb, replay_protect, protect, encrypt; member
178 info->scb = nla_get_u8(tb[IFLA_MACSEC_SCB]); in macsec_parse()
236 PRINT_FLAG(tmp, info, scb, 's'); in flags_str()
327 NLA_PUT_U8(msg, IFLA_MACSEC_SCB, info->scb); in macsec_put_attrs()
386 diff |= MACSEC_DIFF(SCB, a->scb != b->scb); in macsec_compare()
818 int rtnl_link_macsec_set_scb(struct rtnl_link *link, uint8_t scb) in rtnl_link_macsec_set_scb() argument
824 if (scb > 1) in rtnl_link_macsec_set_scb()
827 info->scb = scb; in rtnl_link_macsec_set_scb()
833 int rtnl_link_macsec_get_scb(struct rtnl_link *link, uint8_t *scb) in rtnl_link_macsec_get_scb() argument
842 if (scb) in rtnl_link_macsec_get_scb()
[all …]
/external/pcre/dist2/src/
Dpcre2_substitute.c248 pcre2_substitute_callout_block scb; in pcre2_substitute() local
310 scb.version = 0; in pcre2_substitute()
311 scb.input = subject; in pcre2_substitute()
312 scb.output = (PCRE2_SPTR)buffer; in pcre2_substitute()
313 scb.ovector = ovector; in pcre2_substitute()
467 scb.output_offsets[0] = buff_offset; in pcre2_substitute()
468 scb.oveccount = rc; in pcre2_substitute()
899 scb.subscount = subs; in pcre2_substitute()
900 scb.output_offsets[1] = buff_offset; in pcre2_substitute()
901 rc = mcontext->substitute_callout(&scb, mcontext->substitute_callout_data); in pcre2_substitute()
[all …]
Dpcre2test.c6101 substitute_callout_function(pcre2_substitute_callout_block_8 *scb, in substitute_callout_function() argument
6109 scb->subscount, scb->oveccount, in substitute_callout_function()
6110 SIZ_CAST scb->ovector[0], SIZ_CAST scb->ovector[1]); in substitute_callout_function()
6112 PCHARSV(scb->input, scb->ovector[0], scb->ovector[1] - scb->ovector[0], in substitute_callout_function()
6116 SIZ_CAST scb->output_offsets[0], SIZ_CAST scb->output_offsets[1]); in substitute_callout_function()
6118 PCHARSV(scb->output, scb->output_offsets[0], in substitute_callout_function()
6119 scb->output_offsets[1] - scb->output_offsets[0], utf, outfile); in substitute_callout_function()
6121 if (scb->subscount == dat_datctl.substitute_stop) in substitute_callout_function()
6126 else if (scb->subscount == dat_datctl.substitute_skip) in substitute_callout_function()
/external/swiftshader/src/Device/
DASTC_Decoder.cpp118 std::unique_ptr<symbolic_compressed_block> scb(new symbolic_compressed_block); in Decode() local
125 physical_to_symbolic(bsd.get(), *(physical_compressed_block *)source, scb.get()); in Decode()
126 …block(decode_mode, bsd.get(), x * xBlockSize, y * yBlockSize, z * zBlockSize, scb.get(), ib.get()); in Decode()
/external/skia/src/gpu/vk/
DGrVkCommandPool.cpp64 std::unique_ptr<GrVkSecondaryCommandBuffer> scb(buffer); in recycleSecondaryCommandBuffer() local
66 fAvailableSecondaryBuffers.push_back(std::move(scb)); in recycleSecondaryCommandBuffer()
DGrVkRenderTarget.cpp170 std::unique_ptr<GrVkSecondaryCommandBuffer> scb( in MakeSecondaryCBRenderTarget() local
172 if (!scb) { in MakeSecondaryCBRenderTarget()
178 std::move(scb))); in MakeSecondaryCBRenderTarget()
/external/iproute2/ip/
Dipmacsec.c1108 static bool check_txsc_flags(bool es, bool scb, bool sci) in check_txsc_flags() argument
1110 if (sci && (es || scb)) in check_txsc_flags()
1112 if (es && scb) in check_txsc_flags()
1142 bool es = false, scb = false, send_sci = false; in macsec_parse_opt() local
1216 scb = i; in macsec_parse_opt()
1217 addattr8(hdr, MACSEC_BUFLEN, IFLA_MACSEC_SCB, scb); in macsec_parse_opt()
1267 if (!check_txsc_flags(es, scb, send_sci)) { in macsec_parse_opt()
/external/skqp/src/gpu/vk/
DGrVkRenderTarget.cpp222 GrVkSecondaryCommandBuffer* scb = in MakeSecondaryCBRenderTarget() local
224 if (!scb) { in MakeSecondaryCBRenderTarget()
228 GrVkRenderTarget* vkRT = new GrVkRenderTarget(gpu, desc, info, std::move(layout), rp, scb); in MakeSecondaryCBRenderTarget()
/external/llvm-project/llvm/test/CodeGen/PowerPC/
Dvsx-p9.ll10 @scb = global <16 x i8> zeroinitializer, align 16
45 %3 = load <16 x i8>, <16 x i8>* @scb, align 16
/external/deqp-deps/glslang/Test/
Druntests74 …q --hlsl-iomap --auto-map-bindings --stb 10 --sbb 20 --ssb 30 --suavb 40 --scb 50 -D -V -e main -O…
/external/angle/third_party/vulkan-deps/glslang/src/Test/
Druntests74 …q --hlsl-iomap --auto-map-bindings --stb 10 --sbb 20 --ssb 30 --suavb 40 --scb 50 -D -V -e main -O…
/external/cldr/tools/java/org/unicode/cldr/util/data/languages/
DentityToCode.tsv557 http://www.wikidata.org/entity/Q2967709 scb
/external/icu/icu4c/source/data/misc/
DsupplementalData.txt6705 "scb",
/external/cldr/tools/java/org/unicode/cldr/util/data/
Diso-639-3_Name_Index.tab5971 scb Chut Chut
Diso-639-3.tab5704 scb I L Chut
Dlanguage-subtag-registry31076 Subtag: scb
/external/skia/experimental/wasm-skp-debugger/debugger/
Danim.mskp12996 Q%@ �s'R�������19^�������������b��}�7_"]����hj$�V�T�����,scb����6���d���Ƭ��s]�1F��^����w�…
/external/cldr/tools/java/org/unicode/cldr/util/data/transforms/
Dinternal_raw_IPA-old.txt172204 scb %10541