/kernel/linux/linux-5.10/drivers/mcb/ |
H A D | mcb-parse.c | 16 #define for_each_chameleon_cell(dtype, p) \ 17 for ((dtype) = get_next_dtype((p)); \ 18 (dtype) != CHAMELEON_DTYPE_END; \ 19 (dtype) = get_next_dtype((p))) 23 uint32_t dtype; in get_next_dtype() local 25 dtype = readl(p); in get_next_dtype() 26 return dtype >> 28; in get_next_dtype() 137 u32 dtype; in chameleon_get_bar() local 146 dtype = get_next_dtype(*base); in chameleon_get_bar() 147 if (dtype in chameleon_get_bar() 182 uint32_t dtype; chameleon_parse_cells() local [all...] |
/kernel/linux/linux-6.6/drivers/mcb/ |
H A D | mcb-parse.c | 16 #define for_each_chameleon_cell(dtype, p) \ 17 for ((dtype) = get_next_dtype((p)); \ 18 (dtype) != CHAMELEON_DTYPE_END; \ 19 (dtype) = get_next_dtype((p))) 23 uint32_t dtype; in get_next_dtype() local 25 dtype = readl(p); in get_next_dtype() 26 return dtype >> 28; in get_next_dtype() 137 u32 dtype; in chameleon_get_bar() local 146 dtype = get_next_dtype(*base); in chameleon_get_bar() 147 if (dtype in chameleon_get_bar() 182 uint32_t dtype; chameleon_parse_cells() local [all...] |
/third_party/ffmpeg/tools/python/ |
H A D | convert_from_tensorflow.py | 34 def __init__(self, name, dtype, dims): 36 self.dtype = dtype 51 return "{}: (name: {}, iotype: {}, dtype: {}, dims: {}, used_count: {})".format(self.index, 52 self.name, self.iotype2str[self.iotype], self.dtype2str[self.dtype], 90 dtype = node.attr['dtype'].type 91 if dtype == 0: 92 dtype = node.attr['T'].type 99 operand = Operand(name, dtype, dim [all...] |
/kernel/linux/linux-5.10/include/uapi/linux/hsi/ |
H A D | hsi_char.h | 30 #define HSC_IOW(num, dtype) _IOW(HSI_CHAR_MAGIC, num, dtype) 31 #define HSC_IOR(num, dtype) _IOR(HSI_CHAR_MAGIC, num, dtype) 32 #define HSC_IOWR(num, dtype) _IOWR(HSI_CHAR_MAGIC, num, dtype)
|
H A D | cs-protocol.h | 110 #define CS_IOW(num, dtype) _IOW(CS_IO_MAGIC, num, dtype) 111 #define CS_IOR(num, dtype) _IOR(CS_IO_MAGIC, num, dtype) 112 #define CS_IOWR(num, dtype) _IOWR(CS_IO_MAGIC, num, dtype)
|
/kernel/linux/linux-6.6/include/uapi/linux/hsi/ |
H A D | hsi_char.h | 16 #define HSC_IOW(num, dtype) _IOW(HSI_CHAR_MAGIC, num, dtype) 17 #define HSC_IOR(num, dtype) _IOR(HSI_CHAR_MAGIC, num, dtype) 18 #define HSC_IOWR(num, dtype) _IOWR(HSI_CHAR_MAGIC, num, dtype)
|
H A D | cs-protocol.h | 96 #define CS_IOW(num, dtype) _IOW(CS_IO_MAGIC, num, dtype) 97 #define CS_IOR(num, dtype) _IOR(CS_IO_MAGIC, num, dtype) 98 #define CS_IOWR(num, dtype) _IOWR(CS_IO_MAGIC, num, dtype)
|
/kernel/linux/patches/linux-6.6/prebuilts/usr/include/linux/hsi/ |
H A D | hsi_char.h | 23 #define HSC_IOW(num,dtype) _IOW(HSI_CHAR_MAGIC, num, dtype) 24 #define HSC_IOR(num,dtype) _IOR(HSI_CHAR_MAGIC, num, dtype) 25 #define HSC_IOWR(num,dtype) _IOWR(HSI_CHAR_MAGIC, num, dtype)
|
H A D | cs-protocol.h | 67 #define CS_IOW(num,dtype) _IOW(CS_IO_MAGIC, num, dtype) 68 #define CS_IOR(num,dtype) _IOR(CS_IO_MAGIC, num, dtype) 69 #define CS_IOWR(num,dtype) _IOWR(CS_IO_MAGIC, num, dtype)
|
/kernel/linux/patches/linux-5.10/prebuilts/usr/include/linux/hsi/ |
H A D | hsi_char.h | 23 #define HSC_IOW(num,dtype) _IOW(HSI_CHAR_MAGIC, num, dtype) 24 #define HSC_IOR(num,dtype) _IOR(HSI_CHAR_MAGIC, num, dtype) 25 #define HSC_IOWR(num,dtype) _IOWR(HSI_CHAR_MAGIC, num, dtype)
|
H A D | cs-protocol.h | 67 #define CS_IOW(num,dtype) _IOW(CS_IO_MAGIC, num, dtype) 68 #define CS_IOR(num,dtype) _IOR(CS_IO_MAGIC, num, dtype) 69 #define CS_IOWR(num,dtype) _IOWR(CS_IO_MAGIC, num, dtype)
|
/kernel/linux/patches/linux-4.19/prebuilts/usr/include/linux/hsi/ |
H A D | hsi_char.h | 10 #define HSC_IOW(num, dtype) _IOW(HSI_CHAR_MAGIC, num, dtype) 11 #define HSC_IOR(num, dtype) _IOR(HSI_CHAR_MAGIC, num, dtype) 12 #define HSC_IOWR(num, dtype) _IOWR(HSI_CHAR_MAGIC, num, dtype)
|
H A D | cs-protocol.h | 57 #define CS_IOW(num, dtype) _IOW(CS_IO_MAGIC, num, dtype) 58 #define CS_IOR(num, dtype) _IOR(CS_IO_MAGIC, num, dtype) 59 #define CS_IOWR(num, dtype) _IOWR(CS_IO_MAGIC, num, dtype)
|
/third_party/ltp/tools/sparse/sparse-src/ |
H A D | sparse-llvm.c | 326 static LLVMValueRef constant_value(unsigned long long val, LLVMTypeRef dtype) in constant_value() argument 330 switch (LLVMGetTypeKind(dtype)) { in constant_value() 335 result = LLVMConstIntToPtr(result, dtype); in constant_value() 337 result = LLVMConstPointerNull(dtype); in constant_value() 341 result = LLVMConstInt(dtype, val, 1); in constant_value() 347 result = LLVMConstNull(dtype); in constant_value() 358 LLVMTypeRef dtype; in val_to_value() local 361 dtype = symbol_type(ctype); in val_to_value() 362 result = constant_value(val, dtype); in val_to_value() 406 LLVMTypeRef dtype in pseudo_to_rvalue() local 416 LLVMTypeRef dtype = symbol_type(ctype); value_to_ivalue() local 419 LLVMTypeRef dtype = LLVMIntType(bits_in_pointer); value_to_ivalue() local 431 LLVMTypeRef dtype = symbol_type(ctype); value_to_pvalue() local 842 LLVMTypeRef dtype; output_op_ptrcast() local 880 LLVMTypeRef dtype; output_op_cast() local 913 LLVMTypeRef dtype = symbol_type(insn->type); output_op_fpcast() local 961 LLVMTypeRef dtype = symbol_type(insn->type); output_op_setfval() local [all...] |
/kernel/linux/linux-5.10/include/uapi/linux/ |
H A D | omapfb.h | 34 #define OMAP_IOW(num, dtype) _IOW('O', num, dtype) 35 #define OMAP_IOR(num, dtype) _IOR('O', num, dtype) 36 #define OMAP_IOWR(num, dtype) _IOWR('O', num, dtype)
|
/kernel/linux/linux-6.6/include/uapi/linux/ |
H A D | omapfb.h | 34 #define OMAP_IOW(num, dtype) _IOW('O', num, dtype) 35 #define OMAP_IOR(num, dtype) _IOR('O', num, dtype) 36 #define OMAP_IOWR(num, dtype) _IOWR('O', num, dtype)
|
/kernel/linux/patches/linux-6.6/prebuilts/usr/include/linux/ |
H A D | omapfb.h | 24 #define OMAP_IOW(num,dtype) _IOW('O', num, dtype) 25 #define OMAP_IOR(num,dtype) _IOR('O', num, dtype) 26 #define OMAP_IOWR(num,dtype) _IOWR('O', num, dtype)
|
/kernel/linux/patches/linux-5.10/prebuilts/usr/include/linux/ |
H A D | omapfb.h | 24 #define OMAP_IOW(num,dtype) _IOW('O', num, dtype) 25 #define OMAP_IOR(num,dtype) _IOR('O', num, dtype) 26 #define OMAP_IOWR(num,dtype) _IOWR('O', num, dtype)
|
/kernel/linux/patches/linux-4.19/prebuilts/usr/include/linux/ |
H A D | omapfb.h | 11 #define OMAP_IOW(num, dtype) _IOW('O', num, dtype) 12 #define OMAP_IOR(num, dtype) _IOR('O', num, dtype) 13 #define OMAP_IOWR(num, dtype) _IOWR('O', num, dtype)
|
/third_party/FreeBSD/sys/dev/usb/implementation/ |
H A D | usb_init.c | 41 device_type dtype; member 113 usb_info.dtype = (device_type)0xFFFF; in usbinfo_clean() 246 usb_init(controller_type ctype, device_type dtype) in usb_init() argument 255 dprintf("\n duplicate usb_init %s, ctype:%d dtype:%d\n", __FUNCTION__, usb_info.ctype, usb_info.dtype); in usb_init() 299 usb_info.dtype = dtype; in usb_init()
|
/kernel/linux/linux-5.10/arch/m68k/include/asm/ |
H A D | bootstd.h | 100 #define _bsc4(type,name,atype,a,btype,b,ctype,c,dtype,d) \ 101 type name(atype a, btype b, ctype c, dtype d) \ 116 #define _bsc5(type,name,atype,a,btype,b,ctype,c,dtype,d,etype,e) \ 117 type name(atype a, btype b, ctype c, dtype d, etype e) \
|
/kernel/linux/linux-6.6/arch/m68k/include/asm/ |
H A D | bootstd.h | 100 #define _bsc4(type,name,atype,a,btype,b,ctype,c,dtype,d) \ 101 type name(atype a, btype b, ctype c, dtype d) \ 116 #define _bsc5(type,name,atype,a,btype,b,ctype,c,dtype,d,etype,e) \ 117 type name(atype a, btype b, ctype c, dtype d, etype e) \
|
/third_party/ffmpeg/libavformat/ |
H A D | smjpegdec.c | 143 uint32_t dtype, size, timestamp; in smjpeg_read_packet() local 150 dtype = avio_rl32(s->pb); in smjpeg_read_packet() 151 switch (dtype) { in smjpeg_read_packet() 176 av_log(s, AV_LOG_ERROR, "unknown chunk %"PRIx32"\n", dtype); in smjpeg_read_packet()
|
/third_party/node/deps/v8/tools/ |
H A D | gen-postmortem-metadata.py | 613 dtype = None 616 dtype = 'weak' 619 dtype = args[2].replace('<', '_').replace('>', '_') 623 dtype = 'SMI' 626 assert(offset is not None and dtype is not None); 628 'name': 'class_%s__%s__%s' % (klass, field, dtype),
|
/third_party/ltp/testcases/realtime/tools/ |
H A D | ftqviz.py | 68 t = fromfile(timefile, dtype=int64, sep='\n') 69 x = fromfile(countfile, dtype=int64, sep='\n') 101 ts = arange(0, len(xi), dtype=float)/sample_hz # time signal in units of seconds
|