Home
last modified time | relevance | path

Searched refs:tptr (Results 1 – 13 of 13) sorted by relevance

/openbmc/linux/fs/udf/
H A Dmisc.c257 struct tag *tptr = (struct tag *)data; in udf_update_tag() local
260 tptr->descCRCLength = cpu_to_le16(length); in udf_update_tag()
261 tptr->descCRC = cpu_to_le16(crc_itu_t(0, data + sizeof(struct tag), length)); in udf_update_tag()
262 tptr->tagChecksum = udf_tag_checksum(tptr); in udf_update_tag()
268 struct tag *tptr = (struct tag *)data; in udf_new_tag() local
269 tptr->tagIdent = cpu_to_le16(ident); in udf_new_tag()
270 tptr->descVersion = cpu_to_le16(version); in udf_new_tag()
271 tptr->tagSerialNum = cpu_to_le16(snum); in udf_new_tag()
272 tptr->tagLocation = cpu_to_le32(loc); in udf_new_tag()
/openbmc/linux/tools/include/nolibc/
H A Dtime.h16 time_t time(time_t *tptr) in time() argument
23 if (tptr) in time()
24 *tptr = tv.tv_sec; in time()
/openbmc/linux/drivers/i2c/busses/
H A Di2c-cpm.c304 int tptr; in cpm_i2c_xfer() local
316 tptr = 0; in cpm_i2c_xfer()
327 while (tptr < num) { in cpm_i2c_xfer()
328 pmsg = &msgs[tptr]; in cpm_i2c_xfer()
334 tptr++; in cpm_i2c_xfer()
345 tptr = 0; in cpm_i2c_xfer()
348 while (tptr < num) { in cpm_i2c_xfer()
351 pmsg = &msgs[tptr]; in cpm_i2c_xfer()
354 (in_be16(&tbdf[tptr].cbd_sc) & BD_SC_NAK) || in cpm_i2c_xfer()
359 !(in_be16(&tbdf[tptr].cbd_sc) & BD_SC_READY), in cpm_i2c_xfer()
[all …]
/openbmc/qemu/hw/pci-host/
H A Dpnv_phb3.c242 uint64_t *tptr = NULL; in pnv_phb3_ioda_access() local
298 if (tptr) { in pnv_phb3_ioda_access()
299 tptr += index; in pnv_phb3_ioda_access()
306 return tptr; in pnv_phb3_ioda_access()
312 uint64_t *tptr; in pnv_phb3_ioda_read() local
315 if (!tptr) { in pnv_phb3_ioda_read()
319 return *tptr; in pnv_phb3_ioda_read()
325 uint64_t *tptr; in pnv_phb3_ioda_write() local
328 if (!tptr) { in pnv_phb3_ioda_write()
338 *tptr = val; in pnv_phb3_ioda_write()
[all …]
H A Dpnv_phb4.c311 if (tptr) { in pnv_phb4_ioda_access()
312 tptr += index; in pnv_phb4_ioda_access()
320 return tptr; in pnv_phb4_ioda_access()
326 uint64_t *tptr; in pnv_phb4_ioda_read() local
329 if (!tptr) { in pnv_phb4_ioda_read()
339 return *tptr; in pnv_phb4_ioda_read()
345 uint64_t *tptr; in pnv_phb4_ioda_write() local
348 if (!tptr) { in pnv_phb4_ioda_write()
388 *tptr = v; in pnv_phb4_ioda_write()
392 *tptr = val; in pnv_phb4_ioda_write()
[all …]
/openbmc/linux/kernel/
H A Dkallsyms.c46 const char *tptr; in kallsyms_expand_symbol() local
73 tptr = &kallsyms_token_table[kallsyms_token_index[*data]]; in kallsyms_expand_symbol()
77 while (*tptr) { in kallsyms_expand_symbol()
81 *result = *tptr; in kallsyms_expand_symbol()
86 tptr++; in kallsyms_expand_symbol()
/openbmc/linux/kernel/time/
H A Dtime.c81 SYSCALL_DEFINE1(stime, __kernel_old_time_t __user *, tptr) in SYSCALL_DEFINE1() argument
86 if (get_user(tv.tv_sec, tptr)) in SYSCALL_DEFINE1()
119 SYSCALL_DEFINE1(stime32, old_time32_t __user *, tptr) in SYSCALL_DEFINE1() argument
124 if (get_user(tv.tv_sec, tptr)) in SYSCALL_DEFINE1()
/openbmc/linux/drivers/usb/gadget/udc/
H A Dfsl_qe_udc.h136 u32 tptr; member
/openbmc/linux/include/soc/fsl/qe/
H A Dqe.h597 __be32 tptr; /* Tx internal data pointer */ member
/openbmc/u-boot/arch/powerpc/include/asm/
H A Dcpm_8xx.h606 ulong tptr; /* Tx internal data pointer */ member
/openbmc/linux/fs/proc/
H A Dproc_sysctl.c51 #define sysctl_is_perm_empty_ctl_table(tptr) \ argument
52 (tptr[0].type == SYSCTL_TABLE_TYPE_PERMANENTLY_EMPTY)
/openbmc/linux/include/linux/
H A Dsyscalls.h1058 asmlinkage long sys_stime(__kernel_old_time_t __user *tptr);
1059 asmlinkage long sys_stime32(old_time32_t __user *tptr);
/openbmc/qemu/target/arm/tcg/
H A Dtranslate-a64.c1358 const AArch64DecodeTable *tptr = table; in lookup_disas_fn() local
1360 while (tptr->mask) { in lookup_disas_fn()
1361 if ((insn & tptr->mask) == tptr->pattern) { in lookup_disas_fn()
1362 return tptr->disas_fn; in lookup_disas_fn()
1364 tptr++; in lookup_disas_fn()