/third_party/protobuf/csharp/compatibility_tests/v3.0.0/src/Google.Protobuf.Test/ |
H A D | JsonParserTest.cs | 808 var original = Any.Pack(message); in Any_RegularMessage() 821 var original = Any.Pack(message, "custom.prefix/middle-part"); in Any_CustomPrefix() 847 var original = Any.Pack(timestamp); in Any_WellKnownType() 862 var nestedMessage = Any.Pack(doubleNestedMessage); in Any_Nested() 863 var message = new TestWellKnownTypes { AnyField = Any.Pack(nestedMessage) }; in Any_Nested()
|
/third_party/python/Lib/ |
H A D | aifc.py | 206 f.write(struct.pack('>h', x)) 209 f.write(struct.pack('>H', x)) 212 f.write(struct.pack('>l', x)) 215 f.write(struct.pack('>L', x)) 220 f.write(struct.pack('B', len(s)))
|
/third_party/skia/third_party/externals/libwebp/src/dsp/ |
H A D | lossless_enc_sse2.c | 370 const __m128i pack = _mm_and_si128(tmp, ff); // ab00 in BundleColorMap_SSE2() local 371 const __m128i dst0 = _mm_unpacklo_epi16(pack, ff); in BundleColorMap_SSE2() 372 const __m128i dst1 = _mm_unpackhi_epi16(pack, ff); in BundleColorMap_SSE2() 388 const __m128i pack = _mm_or_si128(shift, tmp); // 00000000abcd0000 in BundleColorMap_SSE2() local 390 const __m128i res = _mm_or_si128(pack, mask_or); in BundleColorMap_SSE2()
|
/third_party/protobuf/python/google/protobuf/internal/ |
H A D | encoder.py | 511 format: The format string to pass to struct.pack(). 517 local_struct_pack = struct.pack 548 passing non-finite floating-point values to struct.pack, and makes a 553 format: The format string to pass to struct.pack(). 583 local_struct_pack = struct.pack
|
/foundation/communication/dsoftbus/components/nstackx/fillp/include/ |
H A D | fillpinc.h | 25 #pragma pack(push, 8) 608 * 12) Pack Interval 627 * 12) Stack PACK Interval 645 * 4) pack timer 680 FT_CONF_ENLARGE_PACK_INTERVAL, /* Indicates about the enlarging pack duration when there is no much data send */ 695 FT_CONF_APP_PACK_INTERVAL, /* Indicate the FillP default pack interval */ 931 /* Indicates the the increase the pack interval when there is no data transmission. Values: Any value. Greater 1247 struct FillpPackStastics pack; /* Indicates the packet statistics. */ member 1429 #pragma pack(pop)
|
/third_party/python/Doc/library/ |
H A D | tkinter.rst | 648 master into which they are packed. You can pack widgets into frames, and frames 657 :meth:`pack` method applied to it. 659 The pack() method can be called with keyword-option/value pairs that control 663 fred.pack() # defaults to side = "top" 664 fred.pack(side="left") 665 fred.pack(expand=1) 722 self.pack() 725 self.entrythingy.pack() 773 self.pack()
|
/applications/standard/app_samples/code/Project/HapBuild/compile-tool/resources/ |
H A D | app1-signed.hap | ... js/widget/pages/index/index.json
module.json
pack.info
resources.index
resources/base/media/add. ... |
/foundation/arkui/ace_engine/test/tools/event_tree_to_graph/src/beans/ |
H A D | dump_result.py | 51 # found, pack one event tree str
|
/foundation/communication/bluetooth_service/services/bluetooth/service/src/gavdp/a2dp_codec/sbclib/include/ |
H A D | sbc_frame.h | 51 ssize_t Pack(uint8_t* bufStream, const Frame& frame, int joint);
|
/foundation/graphic/graphic_2d/rosen/test/2d_graphics/drawing_ets/ets/pages/ |
H A D | global.ts | 60 console.log(TAG, 'Failed to pack the image. And the error is: ' + error);
|
/kernel/linux/linux-5.10/arch/m68k/fpsp040/ |
H A D | x_unsupp.S | 16 | if fmove.p fpm,<ea> then pack source (fpm)
|
/kernel/linux/linux-5.10/arch/x86/include/asm/xen/ |
H A D | interface_32.h | 94 * must use the following accessor macros to pack/unpack valid MFNs.
|
/kernel/linux/linux-6.6/arch/m68k/fpsp040/ |
H A D | x_unsupp.S | 16 | if fmove.p fpm,<ea> then pack source (fpm)
|
/kernel/linux/linux-5.10/drivers/gpu/drm/i915/gt/ |
H A D | intel_gt_types.h | 45 /* Pack multiple timelines' seqnos into the same page */
|
/kernel/linux/linux-5.10/drivers/video/fbdev/mb862xx/ |
H A D | mb862xxfb.h | 118 #define pack(a, b) (((a) << 16) | (b)) macro
|
/kernel/linux/linux-5.10/include/uapi/rdma/ |
H A D | mthca-abi.h | 48 * that they pack the same way on 32-bit and 64-bit architectures (to
|
H A D | cxgb4-abi.h | 42 * that they pack the same way on 32-bit and 64-bit architectures (to
|
/kernel/linux/linux-5.10/fs/udf/ |
H A D | udf_sb.h | 108 #pragma pack()
|
/kernel/linux/linux-6.6/drivers/video/fbdev/mb862xx/ |
H A D | mb862xxfb.h | 118 #define pack(a, b) (((a) << 16) | (b)) macro
|
/kernel/linux/linux-6.6/include/uapi/rdma/ |
H A D | cxgb4-abi.h | 42 * that they pack the same way on 32-bit and 64-bit architectures (to
|
H A D | mthca-abi.h | 48 * that they pack the same way on 32-bit and 64-bit architectures (to
|
/kernel/linux/linux-6.6/arch/x86/include/asm/xen/ |
H A D | interface_32.h | 94 * must use the following accessor macros to pack/unpack valid MFNs.
|
/kernel/linux/linux-6.6/sound/soc/sof/ |
H A D | sof-utils.c | 21 * bits from each (based on PAGE_SIZE). Then pack valid page address bits
|
/third_party/jerryscript/jerry-debugger/ |
H A D | jerry_client_rawpacket.py | 40 expected = struct.pack("B", config_size)
|
/third_party/json/ |
H A D | .clang-tidy | 3 -altera-struct-pack-align,
|