/third_party/python/Lib/idlelib/ |
H A D | configdialog.py | 131 note.pack(side=TOP, expand=TRUE, fill=BOTH) 132 self.create_action_buttons().pack(side=BOTTOM) 168 self.buttons[txt].pack(side=LEFT, padx=5) 170 Frame(outer, height=2, borderwidth=0).pack(side=TOP) 171 buttons_frame.pack(side=BOTTOM) 250 # # Pack widgets. 367 # Grid and pack widgets: 374 frame_font_name.pack(side=TOP, padx=5, pady=5, fill=X) 375 frame_font_param.pack(side=TOP, padx=5, pady=5, fill=X) 376 font_name_title.pack(sid [all...] |
/kernel/linux/linux-5.10/drivers/net/hamradio/ |
H A D | 6pack.c | 3 * 6pack.c This module implements the 6pack protocol for kernel-based 43 #define SIXP_SEOF 0x40 /* start and end of a 6pack frame */ 48 #define SIXP_CHKSUM 0xFF /* valid checksum of a 6pack frame */ 77 /* 6pack configuration. */ 78 #define SIXP_NRUNIT 31 /* MAX number of 6pack channels */ 107 unsigned char mode; /* 6pack mode */ 109 /* 6pack stuff */ 161 /* ----> 6pack timer interrupt handler and friends. <---- */ 274 /* Close the low-level part of the 6pack channe [all...] |
/kernel/linux/linux-6.6/drivers/net/hamradio/ |
H A D | 6pack.c | 3 * 6pack.c This module implements the 6pack protocol for kernel-based 43 #define SIXP_SEOF 0x40 /* start and end of a 6pack frame */ 48 #define SIXP_CHKSUM 0xFF /* valid checksum of a 6pack frame */ 77 /* 6pack configuration. */ 78 #define SIXP_NRUNIT 31 /* MAX number of 6pack channels */ 108 unsigned char mode; /* 6pack mode */ 110 /* 6pack stuff */ 162 /* ----> 6pack timer interrupt handler and friends. <---- */ 270 /* Close the low-level part of the 6pack channe [all...] |
/third_party/mesa3d/src/mesa/state_tracker/ |
H A D | st_pbo_compute.c | 534 nir_ssa_def *pack[2]; in convert_swap_write() local 535 pack[0] = nir_format_pack_uint_unmasked_ssa(b, nir_channel(b, pixel, 0), nir_channel(b, sd->bits, 0)); in convert_swap_write() 536 pack[1] = nir_format_pack_uint_unmasked_ssa(b, nir_channels(b, pixel, 6), nir_channels(b, sd->bits, 6)); in convert_swap_write() 537 handle_swap(b, nir_pad_vec4(b, nir_vec2(b, pack[0], pack[1])), buffer_offset, sd, 2, true); in convert_swap_write() 763 can_copy_direct(const struct gl_pixelstore_attrib *pack) in can_copy_direct() argument 765 return !(pack->RowLength || in can_copy_direct() 766 pack->SkipPixels || in can_copy_direct() 767 pack->SkipRows || in can_copy_direct() 768 pack in can_copy_direct() 773 download_texture_compute(struct st_context *st, const struct gl_pixelstore_attrib *pack, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLint depth, unsigned level, unsigned layer, GLenum format, GLenum type, enum pipe_format src_format, enum pipe_texture_target view_target, struct pipe_resource *src, enum pipe_format dst_format, enum swizzle_clamp swizzle_clamp) download_texture_compute() argument 1004 copy_converted_buffer(struct gl_context * ctx, struct gl_pixelstore_attrib *pack, enum pipe_texture_target view_target, struct pipe_resource *dst, enum pipe_format dst_format, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLint depth, GLenum format, GLenum type, void *pixels) copy_converted_buffer() argument [all...] |
/third_party/protobuf/csharp/compatibility_tests/v3.0.0/src/Google.Protobuf.Test/WellKnownTypes/ |
H A D | AnyTest.cs | 41 public void Pack() in Pack() method in Google.Protobuf.WellKnownTypes.AnyTest 44 var any = Any.Pack(message); in Pack() 53 var any = Any.Pack(message, "foo.bar/baz"); in Pack_WithCustomPrefix() 62 var any = Any.Pack(message, "foo.bar/baz/"); in Pack_WithCustomPrefixTrailingSlash() 71 var any = Any.Pack(message); in Unpack_WrongType() 79 var any = Any.Pack(message); in Unpack_Success() 88 var any = Any.Pack(message, "foo.bar/baz"); in Unpack_CustomPrefix_Success() 97 var any = Any.Pack(message); in ToString_WithValues()
|
/third_party/mesa3d/src/mesa/main/ |
H A D | pbo.c | 67 const struct gl_pixelstore_attrib *pack, in _mesa_validate_pbo_access() 80 if (!pack->BufferObj) { in _mesa_validate_pbo_access() 85 size = pack->BufferObj->Size; in _mesa_validate_pbo_access() 112 start = _mesa_image_offset(dimensions, pack, width, height, in _mesa_validate_pbo_access() 116 end = _mesa_image_offset(dimensions, pack, width, height, in _mesa_validate_pbo_access() 284 assert(unpack != &ctx->Pack); /* catch pack/unpack mismatch */ in _mesa_unmap_pbo_source() 301 const struct gl_pixelstore_attrib *pack, in _mesa_map_pbo_dest() 306 if (pack->BufferObj) { in _mesa_map_pbo_dest() 307 /* pack int in _mesa_map_pbo_dest() 66 _mesa_validate_pbo_access(GLuint dimensions, const struct gl_pixelstore_attrib *pack, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, GLsizei clientMemSize, const GLvoid *ptr) _mesa_validate_pbo_access() argument 300 _mesa_map_pbo_dest(struct gl_context *ctx, const struct gl_pixelstore_attrib *pack, GLvoid *dest) _mesa_map_pbo_dest() argument 378 _mesa_unmap_pbo_dest(struct gl_context *ctx, const struct gl_pixelstore_attrib *pack) _mesa_unmap_pbo_dest() argument [all...] |
/third_party/typescript/tests/cases/fourslash/ |
H A D | autoImportsNodeNext1.ts | 5 // @Filename: /node_modules/pack/package.json 7 //// "name": "pack", 14 // @Filename: /node_modules/pack/main.d.mts 18 // @Filename: /node_modules/pack/unreachable.d.mts 22 //// import { fromMain } from "pack";
|
/third_party/python/Lib/tkinter/ |
H A D | scrolledtext.py | 10 Most methods calls are inherited from the Text widget; Pack, Grid and 14 from tkinter import Frame, Text, Scrollbar, Pack, Grid, Place namespace 24 self.vbar.pack(side=RIGHT, fill=Y) 28 self.pack(side=LEFT, fill=BOTH, expand=True) 34 methods = vars(Pack).keys() | vars(Grid).keys() | vars(Place).keys() 50 stext.pack(fill=BOTH, side=LEFT, expand=True)
|
/third_party/openssl/test/recipes/ |
H A D | 70-test_key_share.t | 329 $suppgroups = pack "C8", 335 $suppgroups = pack "C6", 342 $ext = pack "C2", 345 $ext = pack "C12", 352 $ext = pack "C11H64", 361 $suppgroups = pack "C4", 365 $ext = pack "C6H64C1", 373 $ext = pack "C8", 379 $ext = pack "C10H64", 388 $ext = pack "C6H64C [all...] |
/foundation/communication/dsoftbus/components/nstackx/fillp/src/fillp_lib/src/fillp/ |
H A D | fillp_timer.c | 47 struct FillpPackStastics *packStastics = &pcb->statistics.pack; in FillpCalFcAppStastics() 103 struct FillpPackStastics *packStastics = &pcb->statistics.pack; in FillpCalRecvRate() 130 "total_recvd_count: %u recv rate: %u pack input interval: %lld", in FillpCalRecvRate() 136 pcb->statistics.traffic.totalRecved, pcb->statistics.pack.periodRecvRate, in FillpCalRecvRate() 152 struct FillpPackStastics *pack = &pcb->statistics.pack; in FillpPackTimerCb() local 156 pack->packTimePassed = curTime - pack->packSendTime; in FillpPackTimerCb() 157 pack->packSendTime = curTime; in FillpPackTimerCb() 159 FILLP_LOGDBG("pack fir in FillpPackTimerCb() [all...] |
/third_party/mesa3d/src/gallium/drivers/vc4/ |
H A D | vc4_opt_copy_propagation.c | 57 if (inst->dst.pack || inst->cond != QPU_COND_ALWAYS) in is_copy_mov() 98 mov->src[0].pack)) in try_copy_prop() 102 if (mov->src[0].pack) { in try_copy_prop() 117 if (inst->src[j].pack) in try_copy_prop() 123 /* A destination pack requires the PM bit to in try_copy_prop() 127 if (inst->dst.pack) in try_copy_prop() 130 unpack = mov->src[0].pack; in try_copy_prop() 132 unpack = inst->src[i].pack; in try_copy_prop() 142 inst->src[i].pack = unpack; in try_copy_prop()
|
/third_party/python/Tools/unittestgui/ |
H A D | unittestgui.py | 265 self.top.pack(fill=tk.BOTH, expand=1) 296 statusFrame.pack(anchor=tk.SW, fill=tk.X, side=tk.BOTTOM) 297 tk.Label(statusFrame, width=1, textvariable=self.statusVar).pack(side=tk.TOP, fill=tk.X) 301 leftFrame.pack(fill=tk.BOTH, side=tk.LEFT, anchor=tk.NW, expand=1) 303 suiteNameFrame.pack(fill=tk.X) 307 progressFrame.pack(fill=tk.X, expand=0, anchor=tk.NW) 308 tk.Label(progressFrame, text="Progress:").pack(anchor=tk.W) 311 self.progressBar.pack(fill=tk.X, expand=1) 316 buttonFrame.pack(side=tk.LEFT, anchor=tk.NW, fill=tk.Y) 319 command=self.discoverClicked).pack(fil [all...] |
/third_party/vk-gl-cts/doc/testspecs/GLES3/ |
H A D | functional.pbo.txt | 25 + Creating and destroying pixel pack and unpack buffers 28 + Reading pixels to pixel pack buffer 30 + Texture pack modes used in combination with pixel pack buffers 42 Pixel buffer object tests create pixel pack buffer or unpack buffer. Data is 45 for pixel pack buffers readpixels is issued with PBO bound. The readpixels result 46 is verified by doing the same operation without pack buffer and then comparing
|
/third_party/mesa3d/src/freedreno/registers/adreno/ |
H A D | meson.build | 58 'a6xx-pack.xml.h', 60 output: 'a6xx-pack.xml.h', 61 command: [prog_python, '@INPUT0@', rnn_src_path, '@INPUT1@', '--pack-structs'], 66 'adreno-pm4-pack.xml.h', 68 output: 'adreno-pm4-pack.xml.h', 69 command: [prog_python, '@INPUT0@', rnn_src_path, '@INPUT1@', '--pack-structs'],
|
/third_party/node/deps/npm/node_modules/tar/lib/ |
H A D | create.js | 6 const Pack = require('./pack.js') 43 const p = new Pack.Sync(opt) 52 const p = new Pack(opt) 102 const p = new Pack.Sync(opt) 108 const p = new Pack(opt)
|
/third_party/mesa3d/src/c11/impl/ |
H A D | threads_posix.c | 65 struct impl_thrd_param pack = *((struct impl_thrd_param *)p); in impl_thrd_routine() local 67 return (void*)(intptr_t)pack.func(pack.arg); in impl_thrd_routine() 257 struct impl_thrd_param *pack; in thrd_create() local 259 pack = (struct impl_thrd_param *)malloc(sizeof(struct impl_thrd_param)); in thrd_create() 260 if (!pack) return thrd_nomem; in thrd_create() 261 pack->func = func; in thrd_create() 262 pack->arg = arg; in thrd_create() 263 if (pthread_create(thr, NULL, impl_thrd_routine, pack) != 0) { in thrd_create() 264 free(pack); in thrd_create() [all...] |
/third_party/node/deps/openssl/openssl/util/perl/TLSProxy/ |
H A D | ServerHello.pm | 15 my $hrrrandom = pack("C*", 0xCF, 0x21, 0xAD, 0x74, 0xE5, 0x9A, 0x61, 0x11, 0xBE, 145 $data = pack('n', $self->server_version); 147 $data .= pack('C', $self->session_id_len); 149 $data .= pack('n', $self->ciphersuite); 150 $data .= pack('C', $self->comp_meth); 154 $extensions .= pack("n", $key); 155 $extensions .= pack("n", length($extdata)); 158 $extensions .= pack("n", $key); 159 $extensions .= pack("n", length($extdata)); 164 $data .= pack(' [all...] |
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);
|
/third_party/openssl/util/perl/TLSProxy/ |
H A D | ServerHello.pm | 15 my $hrrrandom = pack("C*", 0xCF, 0x21, 0xAD, 0x74, 0xE5, 0x9A, 0x61, 0x11, 0xBE, 145 $data = pack('n', $self->server_version); 147 $data .= pack('C', $self->session_id_len); 149 $data .= pack('n', $self->ciphersuite); 150 $data .= pack('C', $self->comp_meth); 154 $extensions .= pack("n", $key); 155 $extensions .= pack("n", length($extdata)); 158 $extensions .= pack("n", $key); 159 $extensions .= pack("n", length($extdata)); 164 $data .= pack(' [all...] |
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);
|
/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...] |
/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/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
|