Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/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,
/third_party/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 …]
/third_party/pcre2/pcre2/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.c6104 substitute_callout_function(pcre2_substitute_callout_block_8 *scb, in substitute_callout_function() argument
6112 scb->subscount, scb->oveccount, in substitute_callout_function()
6113 scb->ovector[0], scb->ovector[1]); in substitute_callout_function()
6115 PCHARSV(scb->input, scb->ovector[0], scb->ovector[1] - scb->ovector[0], in substitute_callout_function()
6119 scb->output_offsets[0], scb->output_offsets[1]); in substitute_callout_function()
6121 PCHARSV(scb->output, scb->output_offsets[0], in substitute_callout_function()
6122 scb->output_offsets[1] - scb->output_offsets[0], utf, outfile); in substitute_callout_function()
6124 if (scb->subscount == dat_datctl.substitute_stop) in substitute_callout_function()
6129 else if (scb->subscount == dat_datctl.substitute_skip) in substitute_callout_function()
/third_party/skia/third_party/externals/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()
/third_party/flutter/skia/src/gpu/vk/
DGrVkCommandPool.cpp54 std::unique_ptr<GrVkSecondaryCommandBuffer> scb(buffer); in recycleSecondaryCommandBuffer() local
55 fAvailableSecondaryBuffers.push_back(std::move(scb)); in recycleSecondaryCommandBuffer()
/third_party/skia/src/gpu/vk/
DGrVkCommandPool.cpp65 std::unique_ptr<GrVkSecondaryCommandBuffer> scb(buffer); in recycleSecondaryCommandBuffer() local
67 fAvailableSecondaryBuffers.push_back(std::move(scb)); in recycleSecondaryCommandBuffer()
DGrVkRenderTarget.cpp187 std::unique_ptr<GrVkSecondaryCommandBuffer> scb( in MakeSecondaryCBRenderTarget() local
189 if (!scb) { in MakeSecondaryCBRenderTarget()
195 std::move(scb))); in MakeSecondaryCBRenderTarget()
/third_party/lwip/src/api/
Dsockets.c2511 lwip_poll_should_wake(const struct lwip_select_cb *scb, int fd, int has_recvevent, int has_sendeven… in lwip_poll_should_wake() argument
2514 for (fdi = 0; fdi < scb->poll_nfds; fdi++) { in lwip_poll_should_wake()
2515 const struct pollfd *pollfd = &scb->poll_fds[fdi]; in lwip_poll_should_wake()
2652 struct lwip_select_cb *scb; in select_check_waiters() local
2666 for (scb = select_cb_list; scb != NULL; scb = scb->next) { in select_check_waiters()
2667 if (scb->sem_signalled == 0) { in select_check_waiters()
2671 if (scb->poll_fds != NULL) { in select_check_waiters()
2672 do_signal = lwip_poll_should_wake(scb, s, has_recvevent, has_sendevent, has_errevent); in select_check_waiters()
2682 if (scb->readset && FD_ISSET(s, scb->readset)) { in select_check_waiters()
2687 if (!do_signal && scb->writeset && FD_ISSET(s, scb->writeset)) { in select_check_waiters()
[all …]
/third_party/FreeBSD/sys/dev/usb/
Dusb_controller.h50 typedef void (usb_bus_mem_cb_t)(struct usb_bus *bus, usb_bus_mem_sub_cb_t *scb);
/third_party/glslang/Test/
Druntests74 …q --hlsl-iomap --auto-map-bindings --stb 10 --sbb 20 --ssb 30 --suavb 40 --scb 50 -D -V -e main -O…
/third_party/skia/third_party/externals/icu/source/data/misc/
DsupplementalData.txt6705 "scb",
/third_party/icu/icu4c/source/data/misc/
DsupplementalData.txt6705 "scb",
/third_party/skia/experimental/wasm-skp-debugger/debugger/
Danim.mskp12996 Q%@ �s'R�������19^�������������b��}�7_"]����hj$�V�T�����,scb����6���d���Ƭ��s]�1F��^����w�…