| /third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/str_format/ |
| H A D | bind.cc | 29 absl::Span<const FormatArgImpl> pack) { in BindFromPosition() 31 if (static_cast<size_t>(position) > pack.size()) { in BindFromPosition() 35 return FormatArgImplFriend::ToInt(pack[position - 1], value); in BindFromPosition() 40 explicit ArgContext(absl::Span<const FormatArgImpl> pack) : pack_(pack) {} in ArgContext() argument 42 // Fill 'bound' with the results of applying the context's argument pack 105 ConverterConsumer(Converter converter, absl::Span<const FormatArgImpl> pack) in ConverterConsumer() argument 106 : converter_(converter), arg_context_(pack) {} in ConverterConsumer() 175 absl::Span<const FormatArgImpl> pack, in BindWithPack() 177 return ArgContext(pack) in BindWithPack() 28 BindFromPosition(int position, int* value, absl::Span<const FormatArgImpl> pack) BindFromPosition() argument 174 BindWithPack(const UnboundConversion* props, absl::Span<const FormatArgImpl> pack, BoundConversion* bound) BindWithPack() argument [all...] |
| /device/soc/hisilicon/hi3861v100/sdk_liteos/build/scripts/ |
| H A D | packet_create.py | 93 file.write(struct.pack('IHHI', flag, crc, imageNum, totalFileSize))
99 struct.pack('32sIIIII', bytes(pathName, 'ascii'), startIndex, imageSizeList[times], burnAddrList[times],
108 file.write(struct.pack('IIII', 0, 0, 0, 0))
115 file.write(struct.pack('H', crc16))
174 file.write(struct.pack('IHHI', flag, crc, imageNum, totalFileSize))
179 file.write(struct.pack('32sIIIII', bytes(pathName, 'ascii'), startIndex, imageSizeList[times], burnAddrList[times],
188 file.write(struct.pack('IIII', 0, 0, 0, 0))
196 file.write(struct.pack('H', crc16))
|
| /third_party/ffmpeg/libavcodec/x86/ |
| H A D | sbcdsp.asm | 54 %macro ANALYZE_MAC_REG 7 ; out1, out2, in, tmp1, tmp2, offset, pack 55 %ifidn %7, pack 73 ANALYZE_MAC_REG m0, m2, m0, m0, m2, 80, pack 74 ANALYZE_MAC_REG m0, m2, m1, m1, m3, 96, pack 98 ANALYZE_MAC_REG m4, m5, m0, m4, m5, 160, pack 99 ANALYZE_MAC_REG m4, m5, m1, m6, m7, 192, pack 100 ANALYZE_MAC_REG m4, m5, m2, m6, m7, 224, pack 101 ANALYZE_MAC_REG m4, m5, m3, m6, m7, 256, pack
|
| /third_party/cups-filters/cupsfilters/ |
| H A D | pack.c | 14 * cupsPackHorizontal() - Pack pixels horizontally... 15 * cupsPackHorizontal2() - Pack 2-bit pixels horizontally... 16 * cupsPackHorizontalBit() - Pack pixels horizontally by bit... 17 * cupsPackVertical() - Pack pixels vertically... 28 * 'cupsPackHorizontal()' - Pack pixels horizontally... 115 * 'cupsPackHorizontal2()' - Pack 2-bit pixels horizontally... 168 * 'cupsPackHorizontalBit()' - Pack pixels horizontally by bit... 247 * 'cupsPackVertical()' - Pack pixels vertically...
|
| /third_party/mesa3d/src/intel/genxml/ |
| H A D | README | 2 started out trying to generate bit fields but it evolved into the pack 26 The pack functions on the other hand allows us a great deal of 29 the pack function, the compiler will recognize that the other is 34 laid out and aligned. Our pack functions let us control exactly 38 Once we have the pack function it allows us to hook in various 45 the pack function, we can actually assert on that and catch it at 58 have to call a function to do this, but with the pack function we 59 generate code in the pack function to do this for us. That's a
|
| /third_party/node/deps/openssl/openssl/util/perl/TLSProxy/ |
| H A D | Certificate.pm | 138 $extensions .= pack("n", $key); 139 $extensions .= pack("n", length($extdata)); 142 $data = pack('C', length($self->context())); 149 $data .= pack('Cn', $hi, $certlistlen); 152 $data .= pack('Cn', $hi, $certlen); 153 $data .= pack('n', length($extensions)); 162 $data .= pack('Cn', $hi, $certlistlen); 165 $data .= pack('Cn', $hi, $certlen);
|
| H A D | ClientHello.pm | 124 $extension .= pack("n", $key); 125 $extension .= pack("n", length($extdata)); 137 $data = pack('n', $self->client_version); 139 $data .= pack('C', $self->session_id_len); 141 $data .= pack('n', $self->ciphersuite_len); 142 $data .= pack("n*", @{$self->ciphersuites}); 143 $data .= pack('C', $self->comp_meth_len); 144 $data .= pack("C*", @{$self->comp_meths}); 161 $data .= pack('n', length($extensions));
|
| /third_party/openssl/util/perl/TLSProxy/ |
| H A D | Certificate.pm | 138 $extensions .= pack("n", $key); 139 $extensions .= pack("n", length($extdata)); 142 $data = pack('C', length($self->context())); 149 $data .= pack('Cn', $hi, $certlistlen); 152 $data .= pack('Cn', $hi, $certlen); 153 $data .= pack('n', length($extensions)); 162 $data .= pack('Cn', $hi, $certlistlen); 165 $data .= pack('Cn', $hi, $certlen);
|
| H A D | ClientHello.pm | 124 $extension .= pack("n", $key); 125 $extension .= pack("n", length($extdata)); 137 $data = pack('n', $self->client_version); 139 $data .= pack('C', $self->session_id_len); 141 $data .= pack('n', $self->ciphersuite_len); 142 $data .= pack("n*", @{$self->ciphersuites}); 143 $data .= pack('C', $self->comp_meth_len); 144 $data .= pack("C*", @{$self->comp_meths}); 161 $data .= pack('n', length($extensions));
|
| /third_party/protobuf/objectivec/ |
| H A D | GPBAny.pbobjc.h | 62 * Protobuf library provides support to pack/unpack Any values in the form 65 * Example 1: Pack and unpack a message in C++. 75 * Example 2: Pack and unpack a message in Java. 78 * Any any = Any.pack(foo); 84 * Example 3: Pack and unpack a message in Python. 88 * any.Pack(foo) 94 * Example 4: Pack and unpack a message in Go 104 * The pack methods provided by protobuf library will by default use
|
| /third_party/protobuf/src/google/protobuf/ |
| H A D | any.proto | 45 // Protobuf library provides support to pack/unpack Any values in the form 48 // Example 1: Pack and unpack a message in C++. 58 // Example 2: Pack and unpack a message in Java. 61 // Any any = Any.pack(foo); 67 // Example 3: Pack and unpack a message in Python. 71 // any.Pack(foo) 77 // Example 4: Pack and unpack a message in Go 87 // The pack methods provided by protobuf library will by default use
|
| /kernel/linux/linux-5.10/sound/usb/usx2y/ |
| H A D | usx2yhwdeppcm.c | 101 int count, counts, pack; in usx2y_hwdep_urb_play_prepare() local 115 for (pack = 0; pack < nr_of_packs(); pack++) { in usx2y_hwdep_urb_play_prepare() 123 urb->iso_frame_desc[pack].offset = shm->captured_iso[shm->playback_iso_head].offset; in usx2y_hwdep_urb_play_prepare() 124 urb->iso_frame_desc[pack].length = shm->captured_iso[shm->playback_iso_head].length; in usx2y_hwdep_urb_play_prepare() 126 memset((char *)urb->transfer_buffer + urb->iso_frame_desc[pack].offset, 0, in usx2y_hwdep_urb_play_prepare() 127 urb->iso_frame_desc[pack].length); in usx2y_hwdep_urb_play_prepare() 140 int pack; in usx2y_usbpcm_urb_capt_iso_advance() local 141 for (pack in usx2y_usbpcm_urb_capt_iso_advance() 425 unsigned long pack; usx2y_usbpcm_urbs_start() local [all...] |
| /kernel/linux/linux-6.6/sound/usb/usx2y/ |
| H A D | usx2yhwdeppcm.c | 105 int count, counts, pack; in usx2y_hwdep_urb_play_prepare() local 119 for (pack = 0; pack < nr_of_packs(); pack++) { in usx2y_hwdep_urb_play_prepare() 127 urb->iso_frame_desc[pack].offset = shm->captured_iso[shm->playback_iso_head].offset; in usx2y_hwdep_urb_play_prepare() 128 urb->iso_frame_desc[pack].length = shm->captured_iso[shm->playback_iso_head].length; in usx2y_hwdep_urb_play_prepare() 130 memset((char *)urb->transfer_buffer + urb->iso_frame_desc[pack].offset, 0, in usx2y_hwdep_urb_play_prepare() 131 urb->iso_frame_desc[pack].length); in usx2y_hwdep_urb_play_prepare() 145 int pack, head; in usx2y_usbpcm_urb_capt_iso_advance() local 147 for (pack in usx2y_usbpcm_urb_capt_iso_advance() 415 unsigned long pack; usx2y_usbpcm_urbs_start() local [all...] |
| /device/soc/hisilicon/hi3861v100/sdk_liteos/third_party/paho.mqtt.c/include/mqtt/ |
| H A D | MQTTProtocolClient.h | 42 int MQTTProtocol_handlePublishes(void* pack, int sock); 43 int MQTTProtocol_handlePubacks(void* pack, int sock); 44 int MQTTProtocol_handlePubrecs(void* pack, int sock); 45 int MQTTProtocol_handlePubrels(void* pack, int sock); 46 int MQTTProtocol_handlePubcomps(void* pack, int sock);
|
| /foundation/communication/dsoftbus/components/nstackx/fillp/src/fillp_lib/include/fillp/ |
| H A D | fillp_flow_control.h | 37 #define FILLP_FC_RTT_PACK_RATIO 4 // The ratio of rtt and pack period 46 FILLP_UINT8 i; /* pack index measurement was taken */ 57 void fillp_analyse_pack(struct FillpPcb *pcb, struct FillpPktPack *pack); 58 void FillpFcTailProtected(struct FillpPcb *pcb, struct FillpPktPack *pack); 59 void FillpFcPackInput(struct FillpPcb *pcb, struct FillpPktPack *pack);
|
| /third_party/python/Lib/idlelib/ |
| H A D | statusbar.py | 13 label.pack(side=side, pady=0, padx=4) 31 text.pack() 35 msb.pack(side='bottom', fill='x') 42 button.pack(side='bottom') 43 frame.pack()
|
| /foundation/communication/dsoftbus/core/transmission/trans_channel/proxy/src/ |
| H A D | softbus_proxychannel_control.c | 49 TRANS_LOGE(TRANS_CTRL, "pack msg error"); in TransProxySendInnerMessage() 129 TRANS_LOGE(TRANS_CTRL, "pack handshake fail"); in TransProxyHandshake() 135 TRANS_LOGE(TRANS_CTRL, "pack handshake head fail"); in TransProxyHandshake() 184 TRANS_LOGE(TRANS_CTRL, "pack handshake ack fail"); in TransProxyAckHandshake() 190 TRANS_LOGE(TRANS_CTRL, "pack handshake ack head fail"); in TransProxyAckHandshake() 220 TRANS_LOGE(TRANS_CTRL, "pack keepalive fail"); in TransProxyKeepalive() 226 TRANS_LOGE(TRANS_CTRL, "pack keepalive head fail"); in TransProxyKeepalive() 256 TRANS_LOGE(TRANS_CTRL, "pack keepalive ack fail"); in TransProxyAckKeepalive() 263 TRANS_LOGE(TRANS_CTRL, "pack keepalive ack head fail"); in TransProxyAckKeepalive() 296 TRANS_LOGE(TRANS_CTRL, "pack rese in TransProxyResetPeer() [all...] |
| /kernel/linux/linux-5.10/sound/soc/tegra/ |
| H A D | tegra20_spdif.h | 91 * Pack data mode: 328 * 16-bit (BIT_MODE=00, PACK=0) 329 * 20-bit (BIT_MODE=01, PACK=0) 330 * 24-bit (BIT_MODE=10, PACK=0) 331 * raw (BIT_MODE=11, PACK=0) 332 * 16-bit packed (BIT_MODE=00, PACK=1) 368 * 16-bit (BIT_MODE=00, PACK=0) 369 * 20-bit (BIT_MODE=01, PACK=0) 370 * 24-bit (BIT_MODE=10, PACK=0) 371 * raw (BIT_MODE=11, PACK [all...] |
| /kernel/linux/linux-6.6/sound/soc/tegra/ |
| H A D | tegra20_spdif.h | 91 * Pack data mode: 328 * 16-bit (BIT_MODE=00, PACK=0) 329 * 20-bit (BIT_MODE=01, PACK=0) 330 * 24-bit (BIT_MODE=10, PACK=0) 331 * raw (BIT_MODE=11, PACK=0) 332 * 16-bit packed (BIT_MODE=00, PACK=1) 368 * 16-bit (BIT_MODE=00, PACK=0) 369 * 20-bit (BIT_MODE=01, PACK=0) 370 * 24-bit (BIT_MODE=10, PACK=0) 371 * raw (BIT_MODE=11, PACK [all...] |
| /third_party/mesa3d/src/c11/impl/ |
| H A D | threads_win32.c | 89 struct impl_thrd_param pack; in impl_thrd_routine() local 91 memcpy(&pack, p, sizeof(struct impl_thrd_param)); in impl_thrd_routine() 93 code = pack.func(pack.arg); in impl_thrd_routine() 313 struct impl_thrd_param *pack; in thrd_create() local 316 pack = (struct impl_thrd_param *)malloc(sizeof(struct impl_thrd_param)); in thrd_create() 317 if (!pack) return thrd_nomem; in thrd_create() 318 pack->func = func; in thrd_create() 319 pack->arg = arg; in thrd_create() 320 handle = _beginthreadex(NULL, 0, impl_thrd_routine, pack, in thrd_create() [all...] |
| /third_party/node/deps/npm/docs/output/commands/ |
| H A D | npm-pack.html | 3 <title>npm-pack</title> 139 <h1 id="npm-pack">npm-pack</h1> 145 <div id="_table_of_contents"><ul><li><a href="#synopsis">Synopsis</a></li><li><a href="#configuration">Configuration</a></li><ul><li><a href="#dry-run"><code>dry-run</code></a></li><li><a href="#json"><code>json</code></a></li><li><a href="#pack-destination"><code>pack-destination</code></a></li><li><a href="#workspace"><code>workspace</code></a></li><li><a href="#workspaces"><code>workspaces</code></a></li><li><a href="#include-workspace-root"><code>include-workspace-root</code></a></li></ul><li><a href="#description">Description</a></li><li><a href="#see-also">See Also</a></li></ul></div> 149 <pre><code class="language-bash">npm pack <package-spec> 160 <code>dedupe</code>, <code>uninstall</code>, as well as <code>pack</code> and <code>publish</code>.</p> 174 <h4 id="pack-destination"><code>pack-destination</code></h4> 179 <p>Directory in which <code>npm pack</cod [all...] |
| /foundation/communication/dsoftbus/components/nstackx/fillp/src/fillp_lib/src/fillp/ |
| H A D | fillp_pcb.c | 380 pcb->pack.periodDroped = 0; in InitSimpleStatics() 381 pcb->pack.periodRecvBits = 0; in InitSimpleStatics() 382 pcb->pack.peerRtt = FILLP_FALSE; in InitSimpleStatics() 383 pcb->pack.periodRecvedOnes = 0; in InitSimpleStatics() 385 pcb->pack.packIntervalBackup = pcb->pack.packInterval; in InitSimpleStatics() 386 pcb->pack.packLostSeq = 0; in InitSimpleStatics() 387 pcb->pack.packSendTime = fpcb->pcbInst->curTime; in InitSimpleStatics() 388 pcb->pack.packTimePassed = 0; in InitSimpleStatics() 389 pcb->pack in InitSimpleStatics() [all...] |
| /third_party/mesa3d/src/gallium/drivers/vc4/ |
| H A D | vc4_qir.c | 239 !inst->dst.pack && in qir_is_raw_mov() 240 !inst->src[0].pack); in qir_is_raw_mov() 303 switch (inst->dst.pack) { in qir_channels_written() 317 switch (inst->dst.pack) { in qir_channels_written() 343 unreachable("Bad pack field"); in qir_channels_written() 479 if (inst->dst.pack) { in qir_dump_inst() 480 if (inst->dst.pack) { in qir_dump_inst() 482 vc4_qpu_disasm_pack_mul(stderr, inst->dst.pack); in qir_dump_inst() 484 vc4_qpu_disasm_pack_a(stderr, inst->dst.pack); in qir_dump_inst() 492 vc4_qpu_disasm_unpack(stderr, inst->src[i].pack); in qir_dump_inst() 721 int pack = reg.pack; qir_follow_movs() local [all...] |
| /third_party/python/Tools/demo/ |
| H A D | sortvisu.py | 37 self.frame.pack(fill=X) 39 self.label.pack() 41 self.canvas.pack() 43 self.report.pack() 493 self.botframe.pack(side=BOTTOM) 495 self.botleftframe.pack(side=LEFT, fill=Y) 497 self.botrightframe.pack(side=RIGHT, fill=Y) 501 self.b_qsort.pack(fill=X) 504 self.b_isort.pack(fill=X) 507 self.b_ssort.pack(fil [all...] |
| /third_party/skia/third_party/externals/oboe/samples/RhythmGame/third_party/glm/detail/ |
| H A D | func_packing.hpp | 4 /// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.4 Floating-Point Pack and Unpack Functions</a> 7 /// @defgroup core_func_packing Floating-Point Pack and Unpack Functions 32 /// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.4 Floating-Point Pack and Unpack Functions</a> 45 /// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.4 Floating-Point Pack and Unpack Functions</a> 58 /// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.4 Floating-Point Pack and Unpack Functions</a> 71 /// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.4 Floating-Point Pack and Unpack Functions</a> 84 /// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.4 Floating-Point Pack and Unpack Functions</a> 97 /// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.4 Floating-Point Pack and Unpack Functions</a> 110 /// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.4 Floating-Point Pack and Unpack Functions</a> 123 /// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.4 Floating-Point Pack an [all...] |