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()
329 dev_dbg(&adap->dev, "R: %d T: %d\n", rptr, tptr); in cpm_i2c_xfer()
331 cpm_i2c_parse_message(adap, pmsg, num, tptr, rptr); 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()
[all …]
/openbmc/qemu/hw/pci-host/
H A Dpnv_phb3.c242 uint64_t *tptr = NULL; in pnv_phb3_ioda_access() local
246 tptr = phb->ioda_LIST; in pnv_phb3_ioda_access()
250 tptr = phb->ioda_LXIVT; in pnv_phb3_ioda_access()
268 tptr = phb->ioda_TVT; in pnv_phb3_ioda_access()
276 tptr = phb->ioda_M64BT; in pnv_phb3_ioda_access()
280 tptr = phb->ioda_MDT; in pnv_phb3_ioda_access()
284 tptr = phb->ioda_PEEV; in pnv_phb3_ioda_access()
298 if (tptr) { in pnv_phb3_ioda_access()
299 tptr += index; in pnv_phb3_ioda_access()
306 return tptr; in pnv_phb3_ioda_access()
[all …]
H A Dpnv_phb4.c252 uint64_t *tptr = NULL; in pnv_phb4_ioda_access() local
256 tptr = phb->ioda_LIST; in pnv_phb4_ioda_access()
260 tptr = phb->ioda_MIST; in pnv_phb4_ioda_access()
276 tptr = phb->ioda_TVT; in pnv_phb4_ioda_access()
285 tptr = phb->ioda_MBT; in pnv_phb4_ioda_access()
290 tptr = phb->ioda_MDT; in pnv_phb4_ioda_access()
295 tptr = phb->ioda_PEEV; in pnv_phb4_ioda_access()
310 if (tptr) { in pnv_phb4_ioda_access()
311 tptr += index; in pnv_phb4_ioda_access()
319 return tptr; in pnv_phb4_ioda_access()
[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.h1064 asmlinkage long sys_stime(__kernel_old_time_t __user *tptr);
1065 asmlinkage long sys_stime32(old_time32_t __user *tptr);
/openbmc/qemu/target/arm/tcg/
H A Dtranslate-a64.c1430 const AArch64DecodeTable *tptr = table; in lookup_disas_fn() local
1432 while (tptr->mask) { in lookup_disas_fn()
1433 if ((insn & tptr->mask) == tptr->pattern) { in lookup_disas_fn()
1434 return tptr->disas_fn; in lookup_disas_fn()
1436 tptr++; in lookup_disas_fn()