| /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
|
| /third_party/node/deps/openssl/openssl/util/perl/TLSProxy/ |
| 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 | 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/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/mesa/state_tracker/ |
| H A D | st_cb_readpixels.c | 101 const struct gl_pixelstore_attrib *pack, void *pixels) in try_pbo_readpixels() 136 if (!st_pbo_addresses_pixelstore(st, GL_TEXTURE_2D, false, pack, pixels, &addr)) in try_pbo_readpixels() 415 const struct gl_pixelstore_attrib *pack, in st_ReadPixels() 481 pack->SwapBytes); in st_ReadPixels() 486 if (st->pbo.download_enabled && pack->BufferObj) { in st_ReadPixels() 491 pack, pixels)) in st_ReadPixels() 513 type, pack->SwapBytes, NULL)) { in st_ReadPixels() 529 pixels = _mesa_map_pbo_dest(ctx, pack, pixels); in st_ReadPixels() 534 _mesa_unmap_pbo_dest(ctx, pack); in st_ReadPixels() 542 const int destStride = _mesa_image_row_stride(pack, widt in st_ReadPixels() 96 try_pbo_readpixels(struct st_context *st, struct gl_renderbuffer *rb, bool invert_y, GLint x, GLint y, GLsizei width, GLsizei height, GLenum gl_format, enum pipe_format src_format, enum pipe_format dst_format, const struct gl_pixelstore_attrib *pack, void *pixels) try_pbo_readpixels() argument 412 st_ReadPixels(struct gl_context *ctx, GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, const struct gl_pixelstore_attrib *pack, void *pixels) st_ReadPixels() argument [all...] |
| /third_party/python/Lib/idlelib/ |
| H A D | help_about.py | 63 frame_buttons.pack(side=BOTTOM, fill=X) 64 frame.pack(side=TOP, expand=True, fill=BOTH) 67 self.button_ok.pack(padx=5, pady=5) 70 frame_background.pack(expand=True, fill=BOTH) 112 self.py_license.pack(side=LEFT, padx=10, pady=10) 116 self.py_copyright.pack(side=LEFT, padx=10, pady=10) 120 self.py_credits.pack(side=LEFT, padx=10, pady=10) 135 self.readme.pack(side=LEFT, padx=10, pady=10) 139 self.idle_news.pack(side=LEFT, padx=10, pady=10) 143 self.idle_credits.pack(sid [all...] |
| 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()
|
| H A D | debugger.py | 140 self.bframe.pack(anchor="w") 156 b.pack(side="left") 159 self.cframe.pack(side="left") 185 self.status.pack(anchor="w") 187 self.error.pack(anchor="w", fill="x") 191 self.fstack.pack(expand=1, fill="both") 193 self.flocals.pack(expand=1, fill="both") 195 self.fglobals.pack(expand=1, fill="both") 473 self.frame.pack(expand=1, fill="both") 475 self.label.pack(fil [all...] |
| /third_party/python/Lib/ |
| H A D | plistlib.py | 672 self._fp.write(struct.pack(offset_format, *self._object_offsets)) 680 self._fp.write(struct.pack('>5xBBBQQQ', *trailer)) 732 self._fp.write(struct.pack('>B', token | size)) 735 self._fp.write(struct.pack('>BBB', token | 0xF, 0x10, size)) 738 self._fp.write(struct.pack('>BBH', token | 0xF, 0x11, size)) 741 self._fp.write(struct.pack('>BBL', token | 0xF, 0x12, size)) 744 self._fp.write(struct.pack('>BBQ', token | 0xF, 0x13, size)) 761 self._fp.write(struct.pack('>Bq', 0x13, value)) 765 self._fp.write(struct.pack('>BB', 0x10, value)) 767 self._fp.write(struct.pack('>B [all...] |
| /third_party/python/Doc/library/ |
| H A D | struct.rst | 55 .. function:: pack(format, v1, v2, ...) 64 Pack the values *v1*, *v2*, ... according to the format string *format* and 71 Unpack from the buffer *buffer* (presumably packed by ``pack(format, ...)``) 101 ``pack(format, ...)``) corresponding to the format string *format*. 268 When attempting to pack a non-integer using any of the integer conversion 312 :func:`pack` is too long (longer than the count minus 1), only the leading 368 Pack and unpack integers of three different sizes, using big endian 372 >>> pack(">bhl", 1, 2, 3) 379 Attempt to pack an integer which is too large for the defined field:: 381 >>> pack("> [all...] |
| /third_party/skia/third_party/externals/angle2/src/tests/gl_tests/ |
| H A D | GetImageTest.cpp | 104 // Pack pixels tightly. in TEST_P() 146 // Pack buffer tests. Requires ES 3+ or extension. in TEST_P() 149 // Test valid pack buffer. in TEST_P() 159 // Test too small pack buffer. in TEST_P() 186 // Pack pixels tightly. in TEST_P() 223 // Pack pixels tightly. in TEST_P() 261 // Pack pixels tightly. in TEST_P() 335 // Pack pixels tightly. in TEST_P() 371 // Pack pixels tightly. in TEST_P() 405 // Pack pixel in TEST_P() [all...] |
| /third_party/node/deps/npm/man/man1/ |
| H A D | npm-pack.1 | 1 .TH "NPM-PACK" "1" "February 2024" "" "" 3 \fBnpm-pack\fR - Create a tarball from a package 8 npm pack <package-spec> 50 Directory in which \fBnpm pack\fR will save tarballs.
|
| /third_party/mesa3d/src/util/format/ |
| H A D | u_format.c | 433 const struct util_format_pack_description *pack = in util_format_write_4() local 445 pack->pack_rgba_uint(dst_row, dst_stride, src, src_stride, w, h); in util_format_write_4() 447 pack->pack_rgba_sint(dst_row, dst_stride, src, src_stride, w, h); in util_format_write_4() 449 pack->pack_rgba_float(dst_row, dst_stride, src, src_stride, w, h); in util_format_write_4() 474 const struct util_format_pack_description *pack = in util_format_write_4ub() local 487 pack->pack_rgba_8unorm(dst_row, dst_stride, src_row, src_stride, w, h); in util_format_write_4ub() 651 const struct util_format_pack_description *pack = in util_format_translate() local 709 if (unpack->unpack_z_float && pack->pack_z_float) { in util_format_translate() 713 if (unpack->unpack_s_8uint && pack->pack_s_8uint) { in util_format_translate() 745 !pack in util_format_translate() [all...] |
| /third_party/mesa3d/src/gallium/drivers/d3d12/ |
| H A D | d3d12_video_dec_h264.h | 81 #pragma pack(push, BeforeDXVApacking, 1) 94 #pragma pack(pop, BeforeDXVApacking) 98 #pragma pack(push, BeforeDXVApacking, 1) 174 #pragma pack(pop, BeforeDXVApacking) 178 #pragma pack(push, BeforeDXVApacking, 1) 185 #pragma pack(pop, BeforeDXVApacking) 209 #pragma pack(push, BeforeDXVApacking, 1) 216 #pragma pack(pop, BeforeDXVApacking)
|
| /third_party/python/Doc/c-api/ |
| H A D | float.rst | 81 Pack and Unpack functions 84 The pack and unpack functions provide an efficient platform-independent way to 85 store floating-point values as byte strings. The Pack routines produce a bytes 106 Pack functions 109 The pack routines write 2, 4 or 8 bytes, starting at *p*. *le* is an 126 Pack a C double as the IEEE 754 binary16 half-precision format. 130 Pack a C double as the IEEE 754 binary32 single precision format. 134 Pack a C double as the IEEE 754 binary64 double precision format.
|
| /third_party/openGLES/extensions/ARB/ |
| H A D | ARB_shading_language_packing.txt | 68 GLSL version 4.00 and the ARB_gpu_shader5 extension which pack and unpack 103 Modify Section 8.4, Floating-Point Pack and Unpack Functions 192 RESOLVED: Proposed name is "ARB_shading_language_pack2h" (i.e., pack 198 RESOLVED: This extension provides an additional pack/unpack function on 209 pack/unpack functions in GLSL 4.10 closely enough. For example, 218 GLSL versions chose to add explicit fp16 types. For the pack functions, 226 of the pack function. One could resolve this by providing only: 265 4 12/17/10 johnk Put in the pack/unpack section instead of 268 3 12/12/2010 pbrown Rename the pack/unpack functions to avoid
|
| /third_party/skia/third_party/externals/opengl-registry/extensions/ARB/ |
| H A D | ARB_shading_language_packing.txt | 58 GLSL version 4.00 and the ARB_gpu_shader5 extension which pack and unpack 93 Modify Section 8.4, Floating-Point Pack and Unpack Functions 182 RESOLVED: Proposed name is "ARB_shading_language_pack2h" (i.e., pack 188 RESOLVED: This extension provides an additional pack/unpack function on 199 pack/unpack functions in GLSL 4.10 closely enough. For example, 208 GLSL versions chose to add explicit fp16 types. For the pack functions, 216 of the pack function. One could resolve this by providing only: 255 4 12/17/10 johnk Put in the pack/unpack section instead of 258 3 12/12/2010 pbrown Rename the pack/unpack functions to avoid
|
| /third_party/python/Lib/tkinter/ |
| H A D | filedialog.py | 69 self.botframe.pack(side=BOTTOM, fill=X) 72 self.selection.pack(side=BOTTOM, fill=X) 76 self.filter.pack(side=TOP, fill=X) 80 self.midframe.pack(expand=YES, fill=BOTH) 83 self.filesbar.pack(side=RIGHT, fill=Y) 86 self.files.pack(side=RIGHT, expand=YES, fill=BOTH) 94 self.dirsbar.pack(side=LEFT, fill=Y) 97 self.dirs.pack(side=LEFT, expand=YES, fill=BOTH) 107 self.ok_button.pack(side=LEFT) 111 self.filter_button.pack(sid [all...] |
| /third_party/protobuf/java/util/src/test/java/com/google/protobuf/util/ |
| H A D | JsonFormatTest.java | 866 TestAny message = TestAny.newBuilder().setAnyValue(Any.pack(content)).build(); in testAnyFieldsWithCustomAddedTypeRegistry() 890 Any anyMessage = Any.pack(Any.pack(content)); in testAnyFieldsWithCustomAddedTypeRegistry() 905 TestAny message = TestAny.newBuilder().setAnyValue(Any.pack(content)).build(); in testAnyFields() 941 Any anyMessage = Any.pack(Any.pack(content)); in testAnyFields() 954 anyMessage = Any.pack(Int32Value.newBuilder().setValue(12345).build()); in testAnyFields() 962 anyMessage = Any.pack(UInt32Value.newBuilder().setValue(12345).build()); in testAnyFields() 970 anyMessage = Any.pack(Int64Value.newBuilder().setValue(12345).build()); in testAnyFields() 978 anyMessage = Any.pack(UInt64Valu in testAnyFields() [all...] |
| /third_party/openGLES/extensions/NV/ |
| H A D | NV_pixel_buffer_object.txt | 53 commands such as glReadPixels pack (write) their data into a buffer 211 The current pixel unpack and pack buffer objects are designated 311 "Pixels may be read from the framebuffer to pixel pack buffer or 322 pixel pack buffer or client memory is diagrammed in figure 4.2." 329 a non-zero buffer object is bound as the current pixel pack buffer, 333 Rename "Placement in Client Memory" to "Placement in Pixel Pack 337 subsection "Placement in Pixel Pack Buffer or Client Memory": 339 "If a pixel pack buffer is bound (as indicated by a non-zero value 341 pixel pack buffer and the pixels are packed into the 344 relative to the pointer. If a pixel pack buffe [all...] |
| /third_party/skia/third_party/externals/opengl-registry/extensions/NV/ |
| H A D | NV_pixel_buffer_object.txt | 53 commands such as glReadPixels pack (write) their data into a buffer 211 The current pixel unpack and pack buffer objects are designated 311 "Pixels may be read from the framebuffer to pixel pack buffer or 322 pixel pack buffer or client memory is diagrammed in figure 4.2." 329 a non-zero buffer object is bound as the current pixel pack buffer, 333 Rename "Placement in Client Memory" to "Placement in Pixel Pack 337 subsection "Placement in Pixel Pack Buffer or Client Memory": 339 "If a pixel pack buffer is bound (as indicated by a non-zero value 341 pixel pack buffer and the pixels are packed into the 344 relative to the pointer. If a pixel pack buffe [all...] |
| /third_party/mbedtls/scripts/mbedtls_dev/ |
| H A D | psa_storage.py | 124 def pack( member in Key 128 """Pack the given arguments into a byte string according to the given format. 130 This function is similar to `struct.pack`, but with the following differences: 137 return struct.pack('<' + fmt, # little-endian, standard sizes 153 header = self.MAGIC + self.pack('L', self.version) 155 attributes = self.pack('LHHLLL', 158 material = self.pack('L', len(self.material)) + self.material
|
| /third_party/mesa3d/src/gallium/drivers/vc4/ |
| H A D | vc4_opt_algebraic.c | 67 !reg.pack && in is_constant_value() 153 inst->src[0].pack >= QPU_UNPACK_8D_REP && in qir_opt_algebraic() 154 inst->src[0].pack <= QPU_UNPACK_8D) { in qir_opt_algebraic() 162 inst->src[0].pack >= QPU_UNPACK_8D_REP && in qir_opt_algebraic() 163 inst->src[0].pack <= QPU_UNPACK_8D) { in qir_opt_algebraic() 229 if (!inst->dst.pack && in qir_opt_algebraic() 240 if (!inst->dst.pack && in qir_opt_algebraic()
|
| /third_party/openssl/test/recipes/ |
| H A D | 70-test_sslrecords.t | 307 $byte = pack('C', TLSProxy::Message::AL_LEVEL_FATAL); 322 $byte = pack('C', TLSProxy::Message::AL_DESC_UNEXPECTED_MESSAGE); 352 my $alert = pack('CC', TLSProxy::Message::AL_LEVEL_FATAL, 375 pack "C44", 410 pack "C49", 601 my $keyupdate = pack "C5", 609 $data .= pack("C", TLSProxy::Record::RT_HANDSHAKE).("\0"x16); 633 my $keyupdate = pack "C5", 641 $data .= pack("C", TLSProxy::Record::RT_HANDSHAKE).("\0"x16); 663 $data = pack "C [all...] |