Home
last modified time | relevance | path

Searched refs:v32 (Results 1 – 25 of 91) sorted by relevance

1234

/netbsd/src/sys/arch/aarch64/include/
Dbyte_swap.h90 uint32_t v32 = v; in __byte_swap_u16_variable() local
91 __asm("rev16\t%w0, %w1" : "=r" (v32) : "0" (v32)); in __byte_swap_u16_variable()
92 return (uint16_t)v32; in __byte_swap_u16_variable()
/netbsd/src/sys/arch/arm/include/
Dbyte_swap.h94 uint32_t v32 = v; in __byte_swap_u16_variable() local
95 __asm("rev16\t%0, %1" : "=r" (v32) : "0" (v32)); in __byte_swap_u16_variable()
96 return (uint16_t)v32; in __byte_swap_u16_variable()
/netbsd/src/sys/compat/netbsd32/
Dnetbsd32_drm.c95 drm_version32_t v32; in compat_drm_version() local
99 if ((error = copyin(&v32, arg, sizeof(v32))) != 0) in compat_drm_version()
102 v64.name_len = v32.name_len; in compat_drm_version()
103 v64.name = NETBSD32PTR64(v32.name); in compat_drm_version()
104 v64.date_len = v32.date_len; in compat_drm_version()
105 v64.date = NETBSD32PTR64(v32.date); in compat_drm_version()
106 v64.desc_len = v32.desc_len; in compat_drm_version()
107 v64.desc = NETBSD32PTR64(v32.desc); in compat_drm_version()
113 v32.version_major = v64.version_major; in compat_drm_version()
114 v32.version_minor = v64.version_minor; in compat_drm_version()
[all …]
/netbsd/src/sys/external/bsd/drm2/dist/drm/
Ddrm_ioc32.c100 drm_version32_t v32; in compat_drm_version() local
104 if (copy_from_user(&v32, (void __user *)arg, sizeof(v32))) in compat_drm_version()
108 .name_len = v32.name_len, in compat_drm_version()
109 .name = compat_ptr(v32.name), in compat_drm_version()
110 .date_len = v32.date_len, in compat_drm_version()
111 .date = compat_ptr(v32.date), in compat_drm_version()
112 .desc_len = v32.desc_len, in compat_drm_version()
113 .desc = compat_ptr(v32.desc), in compat_drm_version()
120 v32.version_major = v.version_major; in compat_drm_version()
121 v32.version_minor = v.version_minor; in compat_drm_version()
[all …]
/netbsd/src/external/lgpl3/gmp/dist/mpn/sparc64/ultrasparc1234/
Dmul_1.asm87 define(`v00',`%f24') define(`v16',`%f26') define(`v32',`%f28') define(`v48',`%f30')
128 ldd [%sp+2223+16], v32
136 fxtod v32, v32
146 fmuld u00, v32, p32
154 fmuld u32, v32, r64 C FIXME not urgent
202 fmuld u32, v32, r64 C FIXME not urgent
218 fmuld u00, v32, p32
229 fmuld u32, v32, r64 C FIXME not urgent
275 fmuld u32, v32, r64 C FIXME not urgent
295 fmuld u00, v32, p32
[all …]
Daddmul_1.asm88 define(`v00',`%f24') define(`v16',`%f26') define(`v32',`%f28') define(`v48',`%f30')
129 ldd [%sp+2223+16], v32
137 fxtod v32, v32
147 fmuld u00, v32, p32
155 fmuld u32, v32, r64 C FIXME not urgent
206 fmuld u32, v32, r64 C FIXME not urgent
222 fmuld u00, v32, p32
233 fmuld u32, v32, r64 C FIXME not urgent
283 fmuld u32, v32, r64 C FIXME not urgent
304 fmuld u00, v32, p32
[all …]
/netbsd/src/external/gpl3/binutils/dist/cpu/
Dcris.cpu98 ; least not for some aspects of v32.
103 (define-cpu-cris v32 "CRIS v32 family")
114 current-mach-is-v32
115 "Whether the generated code is for V32. See comment at h-v32."
116 (reg h-v32)
134 (define-mach-cris v32 "Generic CRIS v32 CPU, ETRAX FS" "crisv32")
288 ; For v32, we need to keep track of inputs (for movem destination
376 "The common writable special registers in pre-v32 models."
381 "The common readable special registers in pre-v32 models."
440 (define-pmacro (cris-implemented-writable-specregs-v32)
[all …]
DChangeLog631 * cris.cpu (cris-implemented-writable-specregs-v32): Correct size
797 (cris-implemented-writable-specregs-v32)
798 (cris-implemented-readable-specregs-v32): Similar.
/netbsd/src/external/gpl3/gdb/dist/cpu/
Dcris.cpu98 ; least not for some aspects of v32.
103 (define-cpu-cris v32 "CRIS v32 family")
114 current-mach-is-v32
115 "Whether the generated code is for V32. See comment at h-v32."
116 (reg h-v32)
134 (define-mach-cris v32 "Generic CRIS v32 CPU, ETRAX FS" "crisv32")
288 ; For v32, we need to keep track of inputs (for movem destination
376 "The common writable special registers in pre-v32 models."
381 "The common readable special registers in pre-v32 models."
440 (define-pmacro (cris-implemented-writable-specregs-v32)
[all …]
DChangeLog631 * cris.cpu (cris-implemented-writable-specregs-v32): Correct size
797 (cris-implemented-writable-specregs-v32)
798 (cris-implemented-readable-specregs-v32): Similar.
/netbsd/src/sys/arch/arm/arm32/
Dkobj_machdep.c311 uint32_t *p32, *p32_end, v32; in be8_ksym_swap() local
332 v32 = bswap32(*p32); in be8_ksym_swap()
333 *p32++ = v32; in be8_ksym_swap()
/netbsd/src/external/gpl3/gdb/dist/gdb/testsuite/gdb.cp/
Dmany-args.cc46 ss v30, ss v31, ss v32, ss v33, ss v34, ss v35, ss v36, in check_val() argument
59 && v32 == ref_val && v33 == ref_val && v34 == ref_val in check_val()
/netbsd/src/external/gpl3/binutils/dist/gas/doc/
Dc-cris.texi94 @item v32
95 Only instructions and register names for CRIS v32 (code name
103 opcodes common to the v10 and v32 are recognized.
170 .if ..asm.arch.cris.v32
171 @var{code for CRIS v32}
173 @var{code common to CRIS v32 and CRIS v10}
196 @item ..asm.arch.cris.v32
/netbsd/src/external/bsd/file/dist/magic/magdir/
Dber22 # cf. https://www.gsma.com/newsroom/wp-content/uploads/TD.57-v32.31.pdf
/netbsd/src/external/gpl3/gdb/dist/sim/cris/
Dlocal.mk131 …$(AM_V_GEN)cpu=crisv32f mach=crisv32 SUFFIX=v32 FLAGS="with-scache with-profile=fn" EXTRAFILES="$(…
/netbsd/src/external/gpl3/gcc/dist/gcc/config/cris/
Dconstraints.md22 ;; Kept for compatibility. It used to exclude the CRIS v32
/netbsd/src/external/gpl3/gdb/dist/opcodes/
DChangeLog-2004101 for CRISv32 and the size of immediate operands. New v32-only
103 spc. Add v32-only 4-byte entries for p2, p3, p5 and p6. Change
109 Add new opcodes for v32 and adjust existing opcodes to accommodate
/netbsd/src/external/gpl3/binutils/dist/opcodes/
DChangeLog-2004101 for CRISv32 and the size of immediate operands. New v32-only
103 spc. Add v32-only 4-byte entries for p2, p3, p5 and p6. Change
109 Add new opcodes for v32 and adjust existing opcodes to accommodate
/netbsd/src/external/bsd/openpam/dist/
Dconfig.sub948 i*86v32)
/netbsd/src/external/gpl3/binutils/dist/bfd/po/
Dja.po1396 " v10/v32 compatible object %s must not contain a PIC relocation"
1399 " v10/v32 互換オブジェクト %s は PIC 再配置を含んでいてはいけません"
1436 msgid " [v10 and v32]"
1437 msgstr " [v10 および v32]"
1441 msgid " [v32]"
1442 msgstr " [v32]"
1453 msgid "%B contains CRIS v32 code, incompatible with previous objects"
1454 msgstr "%B には CRIS v32 コードが含まれています。これは前のオブジェクトと互換性がありません"
1457 msgid "%B contains non-CRIS-v32 code, incompatible with previous objects"
1458 msgstr "%B には非-CRIS-v32 コードが含まれています。これは前のオブジェクトと互換性がありません"
Dhr.po1361 " v10/v32 compatible object %s must not contain a PIC relocation"
1393 msgid " [v10 and v32]"
1394 msgstr " [v10 i v32]"
1398 msgid " [v32]"
1399 msgstr " [v32]"
1410 msgid "%B contains CRIS v32 code, incompatible with previous objects"
1414 msgid "%B contains non-CRIS-v32 code, incompatible with previous objects"
Dfi.po1469 " v10/v32 compatible object %s must not contain a PIC relocation"
1472 " v10/v32 yhteensopiva objekti %s ei saa sisältää paikkariippumatonta koodisijoitusta"
1509 msgid " [v10 and v32]"
1510 msgstr " [v10 ja v32]"
1514 msgid " [v32]"
1515 msgstr " [v32]"
1525 # CRIS v32 info: The chip with the CRIS v32 core.
1527 msgid "%B contains CRIS v32 code, incompatible with previous objects"
1528 msgstr "%B sisältää ”CRIS v32”-koodia, ei ole yhteensopiva aiempien objektien kanssa"
1531 msgid "%B contains non-CRIS-v32 code, incompatible with previous objects"
[all …]
/netbsd/src/external/gpl3/gdb/dist/bfd/po/
Dja.po1396 " v10/v32 compatible object %s must not contain a PIC relocation"
1399 " v10/v32 互換オブジェクト %s は PIC 再配置を含んでいてはいけません"
1436 msgid " [v10 and v32]"
1437 msgstr " [v10 および v32]"
1441 msgid " [v32]"
1442 msgstr " [v32]"
1453 msgid "%B contains CRIS v32 code, incompatible with previous objects"
1454 msgstr "%B には CRIS v32 コードが含まれています。これは前のオブジェクトと互換性がありません"
1457 msgid "%B contains non-CRIS-v32 code, incompatible with previous objects"
1458 msgstr "%B には非-CRIS-v32 コードが含まれています。これは前のオブジェクトと互換性がありません"
Dhr.po1361 " v10/v32 compatible object %s must not contain a PIC relocation"
1393 msgid " [v10 and v32]"
1394 msgstr " [v10 i v32]"
1398 msgid " [v32]"
1399 msgstr " [v32]"
1410 msgid "%B contains CRIS v32 code, incompatible with previous objects"
1414 msgid "%B contains non-CRIS-v32 code, incompatible with previous objects"
Dfi.po1469 " v10/v32 compatible object %s must not contain a PIC relocation"
1472 " v10/v32 yhteensopiva objekti %s ei saa sisältää paikkariippumatonta koodisijoitusta"
1509 msgid " [v10 and v32]"
1510 msgstr " [v10 ja v32]"
1514 msgid " [v32]"
1515 msgstr " [v32]"
1525 # CRIS v32 info: The chip with the CRIS v32 core.
1527 msgid "%B contains CRIS v32 code, incompatible with previous objects"
1528 msgstr "%B sisältää ”CRIS v32”-koodia, ei ole yhteensopiva aiempien objektien kanssa"
1531 msgid "%B contains non-CRIS-v32 code, incompatible with previous objects"
[all …]

1234