HomeSort by: relevance | last modified time | path
    Searched defs:magic (Results 1 - 25 of 624) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/lib/libc/arch/alpha/gen/
__setjmp14.S 87 ldq t0, magic /* sigcontext magic number */
88 stq t0, (SC_REGS+_REG_UNIQUE*8)(a0) /* magic in sc_regs[31] */
121 magic: label
122 .quad 0xacedbade /* sigcontext magic number */
  /src/lib/libc/compat/arch/alpha/gen/
compat__setjmp.S 57 ldq t0, magic /* sigcontext magic number */
58 stq t0, ((31 + 4) * 8)(a0) /* magic in sc_regs[31] */
86 magic: label
92 ldq t0, ((31 + 4) * 8)(a0) /* magic in sc_regs[31] */
93 ldq t1, magic /* sigcontext magic number */
95 beq t0, botch /* If the magic was bad, punt */
compat_setjmp.S 84 ldq t0, magic /* sigcontext magic number */
85 stq t0, ((31 + 4) * 8)(a0) /* magic in sc_regs[31] */
126 magic: label
127 .quad 0xacedbade /* sigcontext magic number */
  /src/external/bsd/jemalloc/dist/src/
div.c 26 * n / 2 ^ k < 1 by setting k = 32. This gets us a value of magic that works.
34 * This would make the value of magic too high to fit into a uint32_t
35 * (we would want magic = 2^32 exactly). This would mess with code gen
41 uint32_t magic = (uint32_t)(two_to_k / d); local
44 * We want magic = ceil(2^k / d), but C gives us floor. We have to
49 magic++;
51 div_info->magic = magic;
  /src/external/bsd/jemalloc.old/dist/src/
div.c 26 * n / 2 ^ k < 1 by setting k = 32. This gets us a value of magic that works.
34 * This would make the value of magic too high to fit into a uint32_t
35 * (we would want magic = 2^32 exactly). This would mess with code gen
41 uint32_t magic = (uint32_t)(two_to_k / d); local
44 * We want magic = ceil(2^k / d), but C gives us floor. We have to
49 magic++;
51 div_info->magic = magic;
  /src/external/bsd/ntp/dist/libntp/lib/isc/include/isc/
ondestroy.h 84 unsigned int magic; member in struct:isc_ondestroy
magic.h 1 /* $NetBSD: magic.h,v 1.2 2024/08/18 20:47:14 christos Exp $ */
20 /* Id: magic.h,v 1.18 2007/06/19 23:47:18 tbox Exp */
25 /*! \file isc/magic.h */
28 unsigned int magic; member in struct:__anon7414
33 * To use this macro the magic number MUST be the first thing in the
35 * The intent of this is to allow magic numbers to be checked even though
39 (((const isc__magic_t *)(a))->magic == (b)))
  /src/external/mpl/bind/dist/lib/isc/include/isc/
magic.h 1 /* $NetBSD: magic.h,v 1.8 2025/01/26 16:25:41 christos Exp $ */
18 /*! \file isc/magic.h */
21 unsigned int magic; member in struct:__anon24131
25 * To use this macro the magic number MUST be the first thing in the
27 * The intent of this is to allow magic numbers to be checked even though
31 ((a) != NULL && ((const isc__magic_t *)(a))->magic == (b))
  /src/tests/usr.bin/xlint/lint1/
gcc_attribute_type.c 14 unsigned long magic; member in struct:packed_record
19 unsigned long magic; member in struct:record_packed
26 unsigned long magic; member in struct:attribute_before_keyword
  /src/external/gpl2/xcvs/dist/lib/
cycle-check.h 38 int magic; member in struct:cycle_check_state
  /src/external/gpl2/texinfo/dist/util/
texi-docstring-magic.el 1 ;; texi-docstring-magic.el -- munge internal docstrings into texi
8 ;; Id: texi-docstring-magic.el,v 1.2 2004/04/11 17:56:47 karl Exp
34 ;; @c TEXI DOCSTRING MAGIC: my-package-function-or-variable-name
38 ;; M-x texi-docstring-magic to update all of the documentation strings.
41 ;; magic comment strings.
64 ;; (define-key TeXinfo-mode-map "C-cC-d" 'texi-docstring-magic-insert-magic)
80 (defun texi-docstring-magic-splice-sep (strings sep)
90 (defconst texi-docstring-magic-munge-table
171 (defun texi-docstring-magic-munge-docstring (docstring args
    [all...]
  /src/sys/arch/i386/i386/
aout_machdep.c 84 u_long midmag, magic; local
92 magic = midmag & 0xffff;
94 if (magic == 0) {
95 magic = (execp->a_midmag & 0xffff);
99 midmag = mid << 16 | magic;
112 * same as new ZMAGIC format, but with different magic number
120 * same as NMAGIC format, but with different magic number
129 * same as OMAGIC format, but with different magic number
  /src/sys/external/mit/xen-include-public/dist/xen/include/public/
xencomm.h 36 uint32_t magic; member in struct:xencomm_desc
  /src/external/bsd/jemalloc/dist/include/jemalloc/internal/
div.h 17 uint32_t magic; member in struct:div_info_s
34 size_t i = ((uint64_t)n * (uint64_t)div_info->magic) >> 32;
  /src/external/bsd/jemalloc/include/jemalloc/internal/
div.h 17 uint32_t magic; member in struct:div_info_s
34 size_t i = ((uint64_t)n * (uint64_t)div_info->magic) >> 32;
  /src/external/bsd/jemalloc.old/dist/include/jemalloc/internal/
div.h 17 uint32_t magic; member in struct:div_info_s
34 size_t i = ((uint64_t)n * (uint64_t)div_info->magic) >> 32;
  /src/external/bsd/jemalloc.old/include/jemalloc/internal/
div.h 17 uint32_t magic; member in struct:div_info_s
34 size_t i = ((uint64_t)n * (uint64_t)div_info->magic) >> 32;
  /src/external/mpl/dhcp/bind/dist/lib/isc/include/isc/
magic.h 1 /* $NetBSD: magic.h,v 1.1 2024/02/18 20:57:53 christos Exp $ */
21 /*! \file isc/magic.h */
24 unsigned int magic; member in struct:__anon24371
28 * To use this macro the magic number MUST be the first thing in the
30 * The intent of this is to allow magic numbers to be checked even though
37 return s->magic == _m;
  /src/sys/compat/vax1k/
vax1k_exec.c 101 * with a vax1k magic number.
104 * of the epp is in a.out format. Just check 'standard' magic numbers for
115 u_long midmag, magic; local
125 magic = midmag & 0xffff;
127 midmag = mid << 16 | magic;
148 * expect a magic number in native byte order.
178 * exec_vax1k_prep_anymagic(): Prepare a vax1k ?MAGIC binary's exec package
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/pmu/
nouveau_nvkm_subdev_pmu_gk104.c 55 magic(struct nvkm_device *device, u32 ctrl) function
92 magic(device, 0x04000000);
93 magic(device, 0x06000000);
94 magic(device, 0x0c000000);
95 magic(device, 0x0e000000);
98 magic(device, 0x02000000);
99 magic(device, 0x04000000);
100 magic(device, 0x0a000000);
103 magic(device, 0x02000000);
  /src/external/bsd/ntp/dist/libntp/lib/isc/nls/
msgcat.c 32 #include <isc/magic.h>
49 unsigned int magic; member in struct:isc_msgcat
83 msgcat->magic = MSGCAT_MAGIC;
105 msgcat->magic = 0;
  /src/external/bsd/ppp/dist/pppd/
magic.c 1 /* $NetBSD: magic.c,v 1.6 2025/01/08 19:59:39 christos Exp $ */
4 * magic.c - PPP Magic Number routines.
46 __RCSID("$NetBSD: magic.c,v 1.6 2025/01/08 19:59:39 christos Exp $");
59 #include "magic.h"
66 * magic_init - Initialize the magic number generator.
84 * magic - Returns the next magic number.
87 magic(void) function
  /src/external/mpl/dhcp/bind/dist/lib/dns/include/dns/
iptable.h 23 #include <isc/magic.h>
29 unsigned int magic; member in struct:dns_iptable
  /src/lib/libcrypt/
crypt-sha1.c 112 static const char *magic = SHA1_MAGIC; local
133 /* If it starts with the magic string, then skip that */
134 if (!strncmp(salt, magic, strlen(magic))) {
135 salt += strlen(magic);
155 * Prime the pump with <salt><magic><iterations>
158 sl, salt, magic, iterations);
168 magic, iterations, sl, salt);
  /src/sys/arch/evbarm/integrator/
integrator_boot.h 13 struct magic { struct in union:intbootinfo::__anon1314
14 unsigned long magic; member in struct:intbootinfo::__anon1314::magic

Completed in 63 milliseconds

1 2 3 4 5 6 7 8 91011>>