/third_party/skia/third_party/externals/opengl-registry/extensions/EXT/ |
H A D | EXT_shader_pixel_local_storage.txt | 728 (15) Do we need a built-in function to pack unit vectors? 734 Earlier drafts of this extensions added ESSL built-in functions to pack
|
H A D | EXT_texture_shared_exponent.txt | 742 commands that pack and unpack RGB pixel data. 773 An encoder is likely to always pack components so at least
|
H A D | EXT_direct_state_access.txt | 174 pack/unpack state decides how client memory or buffer object memory is 211 unpack or pack pixels (for example, glTexImage2D or glReadPixels 212 respectively), the current unpack and pack pixel store state 3273 pack/unpack state. Latched stated is all client-side state 3282 glPolygonStipple, glConvolutionFilter*, etc. The pixel store pack 3319 pixel store pack and unpack state independently (just the pack 3513 Note both the pack and unpack state are set to their initial 3516 Keep in mind that the initial unpack/pack alignment of 4, while
|
/third_party/python/Lib/test/ |
H A D | test_zipimport.py | 41 struct.pack("<iLL", 0, 837 fp.write(struct.pack('=I', 0x06054B50))
|
H A D | test_gzip.py | 343 self.assertEqual(mtimeBytes, struct.pack('<i', mtime)) # little-endian 366 self.assertEqual(isizeBytes, struct.pack('<i', len(data1)))
|
H A D | test_os.py | 3734 def pack(value): function 3735 """Pack as native uint64_t 3737 return struct.pack("@Q", value) 3747 self.assertEqual(res, pack(initval)) 3749 os.write(fd, pack(23)) 3751 self.assertEqual(res, pack(23)) 3753 os.write(fd, pack(40)) 3754 os.write(fd, pack(2)) 3756 self.assertEqual(res, pack(42))
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
H A D | DIBuilder.h | 469 /// Create debugging information for a template parameter pack. 473 /// \param Val An array of types in the pack.
|
/third_party/node/deps/simdutf/ |
H A D | simdutf.cpp | 930 // Pack with the unsigned saturation two uint16_t code units into single uint8_t vector 931 static simdutf_really_inline simd8<uint8_t> pack(const simd16<uint16_t>& v0, const simd16<uint16_t>& v1) { in pack() function 2201 // Pack with the unsigned saturation two uint16_t code units into single uint8_t vector 2202 static simdutf_really_inline simd8<uint8_t> pack(const simd16<uint16_t>& v0, const simd16<uint16_t>& v1) { in pack() function 2203 // Note: the AVX2 variant of pack operates on 128-bit lanes, thus in pack() 2219 // pack code units in linear order from v0 and v1 in pack() 3165 // Pack with the unsigned saturation two uint16_t code units into single uint8_t vector 3166 static simdutf_really_inline simd8<uint8_t> pack(const simd16<uint16_t>& v0, const simd16<uint16_t>& v1) { in pack() function 12709 const auto in16 = simd16<uint16_t>::pack(v0, v1); in arm_detect_encodings() 12710 const auto nextin16 = simd16<uint16_t>::pack(v in arm_detect_encodings() [all...] |
/kernel/linux/linux-5.10/drivers/message/fusion/ |
H A D | mptbase.c | 6306 EventAck_t *pAck; in SendEventAck() local 6308 if ((pAck = (EventAck_t *) mpt_get_msg_frame(mpt_base_index, ioc)) == NULL) { in SendEventAck() 6316 pAck->Function = MPI_FUNCTION_EVENT_ACK; in SendEventAck() 6317 pAck->ChainOffset = 0; in SendEventAck() 6318 pAck->Reserved[0] = pAck->Reserved[1] = 0; in SendEventAck() 6319 pAck->MsgFlags = 0; in SendEventAck() 6320 pAck->Reserved1[0] = pAck->Reserved1[1] = pAck in SendEventAck() [all...] |
/kernel/linux/linux-6.6/drivers/message/fusion/ |
H A D | mptbase.c | 6318 EventAck_t *pAck; in SendEventAck() local 6320 if ((pAck = (EventAck_t *) mpt_get_msg_frame(mpt_base_index, ioc)) == NULL) { in SendEventAck() 6328 pAck->Function = MPI_FUNCTION_EVENT_ACK; in SendEventAck() 6329 pAck->ChainOffset = 0; in SendEventAck() 6330 pAck->Reserved[0] = pAck->Reserved[1] = 0; in SendEventAck() 6331 pAck->MsgFlags = 0; in SendEventAck() 6332 pAck->Reserved1[0] = pAck->Reserved1[1] = pAck in SendEventAck() [all...] |
/third_party/ffmpeg/libavformat/ |
H A D | mxfdec.c | 108 int64_t pack_ofs; ///< absolute offset of pack in file, including run-in 692 avpriv_request_sample(pb, "Primer pack item length %d", item_len); in mxf_read_primer_pack() 732 /* insert the new partition pack in the middle in mxf_read_partition_pack() 3283 * Matches any partition pack key, in other words: 3287 * @return non-zero if the key is a partition pack key, zero otherwise 3661 av_log(s, AV_LOG_ERROR, "could not find header partition pack key\n"); in mxf_read_header() 3709 /* next partition pack - keep going, seek to previous partition or stop */ in mxf_read_header() 3714 /* we're still parsing forward. proceed to parsing this partition pack */ in mxf_read_header() 4080 /* Must skip Run-In Sequence and search for MXF header partition pack key SMPTE 377M 5.5 */ in mxf_probe()
|
/third_party/openGLES/extensions/EXT/ |
H A D | EXT_direct_state_access.txt | 174 pack/unpack state decides how client memory or buffer object memory is 211 unpack or pack pixels (for example, glTexImage2D or glReadPixels 212 respectively), the current unpack and pack pixel store state 3273 pack/unpack state. Latched stated is all client-side state 3282 glPolygonStipple, glConvolutionFilter*, etc. The pixel store pack 3319 pixel store pack and unpack state independently (just the pack 3513 Note both the pack and unpack state are set to their initial 3516 Keep in mind that the initial unpack/pack alignment of 4, while
|
/third_party/skia/third_party/externals/freetype/src/tools/ |
H A D | glnames.py | 5149 storage += struct.pack( "B", 0 ) 5155 storage += struct.pack( "B", val ) 5164 storage += struct.pack( "!BH", count + 128, self.value ) 5166 storage += struct.pack( "B", count ) 5169 storage += struct.pack( "!H", child.index )
|
/kernel/linux/linux-5.10/arch/powerpc/include/asm/ |
H A D | kvm_book3s.h | 463 if (WARN_ONCE(block >= MAX_SMT_THREADS, "VCPU ID too large to pack")) in kvmppc_pack_vcpu_id()
|
/kernel/linux/linux-5.10/arch/x86/ |
H A D | Makefile | 102 # Pack loops tightly as well:
|
/kernel/linux/common_modules/tzdriver/ion/ |
H A D | dynamic_ion_mem.c | 155 tloge("alloc cmd pack failed\n");
in send_dyn_ion_cmd()
|
/kernel/linux/linux-5.10/Documentation/networking/ |
H A D | plip.rst | 27 cable]. [The protocol used to pack IP packages, is a simple one
|
/kernel/linux/linux-5.10/drivers/clk/sifive/ |
H A D | fu540-prci.c | 262 * __prci_wrpll_pack() - pack PLL configuration parameters into a register value
|
/kernel/linux/linux-5.10/drivers/dma/ |
H A D | mmp_tdma.c | 49 #define TDCR_PACKMOD (0x1 << 16) /* Pack Mode (ADMA Only) */
|
/kernel/linux/linux-5.10/drivers/gpu/drm/amd/display/dc/ |
H A D | dc_helper.c | 208 /* pack commands */ in dmub_reg_value_pack()
|
/kernel/linux/linux-5.10/drivers/net/ethernet/intel/igbvf/ |
H A D | vf.c | 221 * msg type). That's 30 hash values if we pack 'em right. If in e1000_update_mc_addr_list_vf()
|
/kernel/linux/linux-6.6/arch/powerpc/include/asm/ |
H A D | kvm_book3s.h | 478 if (WARN_ONCE(block >= MAX_SMT_THREADS, "VCPU ID too large to pack")) in kvmppc_pack_vcpu_id()
|
/kernel/linux/linux-6.6/Documentation/scheduler/ |
H A D | sched-bwc.rst | 45 increasing the efficiency (we can pack more tasks in the system), but at
|
/kernel/linux/linux-6.6/Documentation/networking/ |
H A D | plip.rst | 27 cable]. [The protocol used to pack IP packages, is a simple one
|
/kernel/linux/linux-6.6/arch/x86/ |
H A D | Makefile | 132 # Pack loops tightly as well:
|