Searched refs:lr (Results 1 - 25 of 271) sorted by relevance

1234567891011

/freebsd-12-stable/contrib/libarchive/libarchive_fe/
H A Dline_reader.c61 struct lafe_line_reader *lr; local
63 lr = calloc(1, sizeof(*lr));
64 if (lr == NULL)
67 lr->nullSeparator = nullSeparator;
68 lr->pathname = strdup(pathname);
71 lr->f = stdin;
73 lr->f = fopen(pathname, "r");
74 if (lr->f == NULL)
76 lr
83 lafe_line_reader_find_eol(struct lafe_line_reader *lr) argument
92 lafe_line_reader_next(struct lafe_line_reader *lr) argument
163 lafe_line_reader_free(struct lafe_line_reader *lr) argument
[all...]
/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/builtins/arm/
H A Dswitch8.S16 // function uses the return address in lr to find the start of the table.
21 // the distance from lr to the label, thus making the tables PIC.
29 // from lr to the target label.
33 ldrb ip, [lr, #-1] // get first byte in table
36 ldrsblo r0, [lr, r0] // get indexed byte out of table
37 ldrsbhs r0, [lr, ip] // if out of range, use last entry in table
38 add ip, lr, r0, lsl #1 // compute label = lr + element*2
H A Dswitchu8.S16 // function uses the return address in lr to find the start of the table.
21 // the distance from lr to the label, thus making the tables PIC.
29 // from lr to the target label.
33 ldrb ip, [lr, #-1] // get first byte in table
36 ldrblo r0, [lr, r0] // get indexed byte out of table
37 ldrbhs r0, [lr, ip] // if out of range, use last entry in table
38 add ip, lr, r0, lsl #1 // compute label = lr + element*2
H A Dswitch16.S16 // function uses the return address in lr to find the start of the table.
21 // the distance from lr to the label, thus making the tables PIC.
29 // from lr to the target label.
33 ldrh ip, [lr, #-1] // get first 16-bit word in table
35 add r0, lr, r0, lsl #1 // compute address of element in table
36 add ip, lr, ip, lsl #1 // compute address of last element in table
40 add ip, lr, r0, lsl #1 // compute label = lr + element*2
H A Dswitch32.S16 // function uses the return address in lr to find the start of the table.
21 // the distance from lr to the label, thus making the tables PIC.
29 // from lr to the target label.
33 ldr ip, [lr, #-1] // get first 32-bit word in table
35 add r0, lr, r0, lsl #2 // compute address of element in table
36 add ip, lr, ip, lsl #2 // compute address of last element in table
40 add ip, lr, r0 // compute label = lr + element
H A Dnegdf2vfp.S25 bx lr
H A Dnegsf2vfp.S25 bx lr
H A Drestore_vfp_d8_d15_regs.S30 bx lr // return to prolog
H A Dsave_vfp_d8_d15_regs.S30 bx lr // return to prolog
H A Dclzsi2.S23 JMP(lr)
61 JMP(lr)
/freebsd-12-stable/cddl/contrib/opensolaris/cmd/zdb/
H A Dzdb_il.c66 lr_create_t *lr = arg; local
67 time_t crtime = lr->lr_crtime[0];
71 name = (char *)(lr + 1);
73 if (lr->lr_common.lrc_txtype == TX_CREATE_ATTR ||
74 lr->lr_common.lrc_txtype == TX_MKDIR_ATTR) {
75 lrattr = (lr_attr_t *)(lr + 1);
89 tab_prefix, lr->lr_doid,
90 (uint64_t)LR_FOID_GET_OBJ(lr->lr_foid),
91 (uint64_t)LR_FOID_GET_SLOTS(lr->lr_foid),
92 lr
102 lr_remove_t *lr = arg; local
112 lr_link_t *lr = arg; local
123 lr_rename_t *lr = arg; local
151 lr_write_t *lr = arg; local
214 lr_truncate_t *lr = arg; local
225 lr_setattr_t *lr = arg; local
271 lr_acl_t *lr = arg; local
310 print_log_record(zilog_t *zilog, lr_t *lr, void *arg, uint64_t claim_txg) argument
[all...]
/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common_interceptors_vfork_arm.inc.S12 push {r4, lr}
14 pop {r4, lr}
15 str lr, [r0]
22 mov lr, pc
36 ldr lr, [r0]
39 mov pc, lr
/freebsd-12-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Dzfs_rlock.c37 * lr = rangelock_enter(zp, off, len, lock_type);
38 * rangelock_reduce(lr, off, len); // optional
39 * rangelock_exit(lr);
145 locked_range_t *lr; local
178 lr = avl_find(tree, new, &where);
179 if (lr != NULL)
182 lr = (locked_range_t *)avl_nearest(tree, where, AVL_AFTER);
183 if (lr != NULL &&
184 lr->lr_offset < new->lr_offset + new->lr_length)
187 lr
213 rangelock_proxify(avl_tree_t *tree, locked_range_t *lr) argument
245 rangelock_split(avl_tree_t *tree, locked_range_t *lr, uint64_t off) argument
277 locked_range_t *lr = kmem_alloc(sizeof (locked_range_t), KM_SLEEP); local
519 locked_range_t *lr = avl_find(tree, remove, NULL); local
556 rangelock_exit(locked_range_t *lr) argument
594 rangelock_reduce(locked_range_t *lr, uint64_t off, uint64_t len) argument
[all...]
H A Dzfs_log.c245 lr_create_t *lr; local
274 txsize = sizeof (*lr) + namesize + fuidsz + xvatsize;
275 lrsize = sizeof (*lr);
285 lr = (lr_create_t *)&itx->itx_lr;
286 lr->lr_doid = dzp->z_id;
287 lr->lr_foid = zp->z_id;
289 LR_FOID_SET_SLOTS(lr->lr_foid, zp->z_dnodesize >> DNODE_SHIFT);
290 lr->lr_mode = zp->z_mode;
292 lr->lr_uid = (uint64_t)zp->z_uid;
294 lr
358 lr_remove_t *lr; local
382 lr_link_t *lr; local
405 lr_create_t *lr; local
437 lr_rename_t *lr; local
492 lr_write_t *lr; local
547 lr_truncate_t *lr; local
570 lr_setattr_t *lr; local
633 lr_acl_t *lr; local
[all...]
H A Dzfs_replay.c273 lr_create_t *lr = (lr_create_t *)lracl; local
288 txtype = (lr->lr_common.lrc_txtype & ~TX_CI);
308 if ((error = zfs_zget(zfsvfs, lr->lr_doid, &dzp)) != 0)
311 objid = LR_FOID_GET_OBJ(lr->lr_foid);
312 dnodesize = LR_FOID_GET_SLOTS(lr->lr_foid) << DNODE_SHIFT;
316 lr->lr_mode, lr->lr_uid, lr->lr_gid, lr->lr_rdev, objid);
326 ZFS_TIME_DECODE(&xva.xva_vattr.va_ctime, lr
428 lr_create_t *lr = arg2; local
567 lr_remove_t *lr = arg2; local
620 lr_link_t *lr = arg2; local
662 lr_rename_t *lr = arg2; local
734 lr_write_t *lr = arg2; local
802 lr_write_t *lr = arg2; local
850 lr_truncate_t *lr = arg2; local
883 lr_setattr_t *lr = arg2; local
944 lr_acl_v0_t *lr = arg2; local
994 lr_acl_t *lr = arg2; local
[all...]
/freebsd-12-stable/lib/csu/aarch64/
H A Dcrtn.S34 ldr lr, [sp]
40 ldr lr, [sp]
H A Dcrti.S39 str lr, [sp]
47 str lr, [sp]
/freebsd-12-stable/lib/msun/src/
H A Ds_fmaf.c48 uint32_t hr, lr; local
52 EXTRACT_WORDS(hr, lr, result);
54 if ((lr & 0x1fffffff) != 0x10000000 || /* not a halfway case */
69 SET_LOW_WORD(adjusted_result, lr + 1);
/freebsd-12-stable/sys/contrib/cloudabi/
H A Dcloudabi_vdso_armv6.S45 bx lr
55 bx lr
61 bx lr
67 bx lr
77 bx lr
90 bx lr
96 bx lr
106 bx lr
115 bx lr
124 bx lr
[all...]
/freebsd-12-stable/sys/libkern/arm/
H A Dldivmod.S48 stmfd sp!, {sp, lr} /* Save a pointer to the above space and lr */
50 ldr lr, [sp, #4] /* Restore lr */
58 stmfd sp!, {sp, lr} /* Save a pointer to the above space and lr */
60 ldr lr, [sp, #4] /* Restore lr */
/freebsd-12-stable/stand/arm/uboot/
H A Dstart.S50 push {r0, r1, r9, lr}
69 pop {r0, r1, r9, lr}
77 str r8, [ip, #0] /* old gd pointer (use to hold lr) */
84 mov r8, lr
86 mov lr, r8
92 mov pc, lr
106 /* Save caller's lr, r8 and r9 */
110 str lr, [ip, #16]
115 ldr lr, =return_from_syscall
119 /* Restore loader's r8, r9 and lr */
[all...]
/freebsd-12-stable/contrib/netbsd-tests/lib/libc/arch/or1k/
H A Dreturn_one.S9 l.jr lr
/freebsd-12-stable/lib/csu/arm/
H A Dcrtn.S6 mov pc, lr
10 mov pc, lr
/freebsd-12-stable/lib/libc/aarch64/sys/
H A Dcerror.S34 stp x0, lr, [sp]
36 ldp x1, lr, [sp]
H A Dvfork.S35 mov x2, lr
40 mov lr, x2

Completed in 286 milliseconds

1234567891011