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

1 2 3 4

  /src/lib/libm/complex/
ccos.c 41 double ch, sh; local in function:ccos
43 _cchsh(cimag(z), &ch, &sh);
44 w = cos(creal(z)) * ch - (sin(creal(z)) * sh) * I;
ccosf.c 41 float ch, sh; local in function:ccosf
43 _cchshf(cimagf(z), &ch, &sh);
44 w = cosf(crealf(z)) * ch - (sinf(crealf(z)) * sh) * I;
ccosl.c 41 long double ch, sh; local in function:ccosl
43 _cchshl(cimagl(z), &ch, &sh);
44 w = cosl(creall(z)) * ch - (sinl(creall(z)) * sh) * I;
csin.c 41 double ch, sh; local in function:csin
43 _cchsh(cimag(z), &ch, &sh);
44 w = sin(creal(z)) * ch + (cos(creal(z)) * sh) * I;
csinf.c 41 float ch, sh; local in function:csinf
43 _cchshf(cimagf(z), &ch, &sh);
44 w = sinf(crealf(z)) * ch + (cosf(crealf(z)) * sh) * I;
csinl.c 41 long double ch, sh; local in function:csinl
43 _cchshl(cimagl(z), &ch, &sh);
44 w = sinl(creall(z)) * ch + (cosl(creall(z)) * sh) * I;
  /src/tests/usr.bin/ftp/
Makefile 9 SCRIPTS+= custom_headers.sh
11 # Keep the .sh suffix because we use it to trigger cgi-bin handling in
13 SCRIPTSNAME_custom_headers.sh= custom_headers.sh
  /src/usr.bin/make/unit-tests/
sunshcmd.mk 5 TEST1 :sh = echo hello macro
6 TEST2 :sh = ${BYECMD} macro
7 TEST3= ${LATERCMD:sh}
var-op-sunsh.mk 3 # Tests for the :sh= variable assignment operator, which runs its right-hand
10 # The assignment operator is directly preceded by the ':sh'.
11 VAR:sh= echo colon-sh macro
12 .if ${VAR} != "colon-sh"
16 # It is also possible to have whitespace around the :sh assignment
18 VAR :sh = echo colon-sh-spaced macro
19 .if ${VAR} != "colon-sh-spaced"
23 # Until 2020-10-04, the ':sh' could even be followed by other characters
91 VAR :sh :sh :sh :sh= echo multiple macro
    [all...]
  /src/sys/arch/m68k/fpe/
fpu_int.c 46 int sh, clr, mask, i; local in function:fpu_intrz
60 sh = FP_NMANT - 1 - x->fp_exp;
61 if (sh <= 0) {
65 clr = 2 - sh / 32;
66 mask = (0xffffffff << (sh % 32));
  /src/tools/genassym/
Makefile 5 .PATH.sh: ${.CURDIR}/../../usr.bin/genassym
19 genassym: genassym.sh
20 ${TOOL_SED} -e "s,/bin/sh,${HOST_BSHELL},g" \
  /src/usr.bin/chpass/
util.c 102 const char *sh; local in function:ok_shell
105 while ((sh = getusershell()) != NULL) {
106 if (!strcmp(name, sh))
109 if ((p = strrchr(sh, '/')) && strcmp(name, p + 1) == 0)
110 return (sh);
  /src/lib/libc/gen/
pw_scan.c 141 const char *p, *sh; local in function:__pw_scan
220 if (root && *p) /* empty == /bin/sh */
222 if (!(sh = getusershell())) {
227 if (!strcmp(p, sh))
  /src/sys/external/bsd/drm2/dist/drm/amd/amdkfd/
kfd_mqd_manager.c 107 int i, se, sh, cu = 0; local in function:mqd_symmetrically_map_cu_mask
115 for (sh = 0; sh < cu_info.num_shader_arrays_per_engine; sh++)
116 cu_per_se[se] += hweight32(cu_info.cu_bitmap[se % 4][sh + (se / 4)]);
  /src/sys/stand/efiboot/
smbios.c 97 const struct smbhdr *sh = (const struct smbhdr *)p; local in function:smbios2_init
99 smbios_entry.addr = (void *)(uintptr_t)sh->addr;
100 smbios_entry.len = sh->size;
102 smbios_entry.mjr = sh->majrev;
103 smbios_entry.min = sh->minrev;
105 smbios_entry.count = sh->count;
111 const struct smb3hdr *sh = (const struct smb3hdr *)p; local in function:smbios3_init
113 smbios_entry.addr = (void *)(uintptr_t)sh->addr;
114 smbios_entry.len = sh->size;
115 smbios_entry.rev = sh->eprev
    [all...]
  /src/tests/dev/audio/
Makefile 29 CLEANFILES+= t_audio.sh
31 t_audio.sh: t_audio.awk audiotest.c
  /src/tests/usr.bin/xlint/lint1/
Makefile 12 TESTS_SH_SRC_t_integration= archsubdir.sh t_integration.sh
13 CLEANFILES+= archsubdir.sh
16 archsubdir.sh:
70 @archsubdir=${ARCHSUBDIR:Q} sh ./accept.sh ''
  /src/sys/arch/arm/fdt/
acpi_fdt.c 184 struct smb3hdr *sh = AcpiOsMapMemory(smbios_table, sizeof(*sh)); local in function:acpi_fdt_smbios_init
185 if (sh == NULL) {
189 ptr = AcpiOsMapMemory(sh->addr, sh->size);
191 smbios_entry.tabphys = sh->addr;
193 smbios_entry.len = sh->size;
194 smbios_entry.rev = sh->eprev;
195 smbios_entry.mjr = sh->majrev;
196 smbios_entry.min = sh->minrev
205 struct smbhdr *sh = AcpiOsMapMemory(smbios_table, sizeof(*sh)); local in function:acpi_fdt_smbios_init
    [all...]
  /src/sys/arch/hpcarm/hpcarm/
softintr.c 64 struct softintr_handler *sh; local in function:softintr_establish
66 sh = kmem_alloc(sizeof(*sh), KM_SLEEP);
67 sh->sh_fun = fun;
68 sh->sh_level = ipl_to_spl(level);
69 sh->sh_arg = arg;
70 sh->sh_pending = 0;
72 return sh;
78 struct softintr_handler *sh = cookie; local in function:softintr_disestablish
82 if (sh->sh_pending)
95 struct softintr_handler *sh = arg; local in function:softintr_free
103 struct softintr_handler **p, *sh = cookie; local in function:softintr_schedule
151 struct softintr_handler *sh, *sh1; local in function:softintr_dispatch
    [all...]
  /src/sys/arch/x86/x86/
bios32.c 245 const struct smbhdr *sh = (const struct smbhdr *)p; local in function:smbios2_map_kva
249 pa = trunc_page(sh->addr);
250 end = round_page(sh->addr + sh->size);
256 smbios_entry.tabphys = sh->addr;
257 smbios_entry.addr = (uint8_t *)(eva + (sh->addr & PGOFSET));
258 smbios_entry.len = sh->size;
260 smbios_entry.mjr = sh->majrev;
261 smbios_entry.min = sh->minrev;
263 smbios_entry.count = sh->count
280 const struct smb3hdr *sh = (const struct smb3hdr *)p; local in function:smbios3_map_kva
    [all...]
  /src/sys/arch/landisk/landisk/
machdep.c 166 Elf_Shdr *sh = (void *)(end + eh->e_shoff); local in function:landisk_startup
169 for (i = 0; i < eh->e_shnum; i++, sh++) {
170 if (sh->sh_offset > 0 &&
171 (sh->sh_offset + sh->sh_size) > symbolsize) {
172 symbolsize = sh->sh_offset + sh->sh_size;
  /src/lib/libc/citrus/
citrus_pivot_factory.c 63 find_src(struct src_head *sh, struct src_entry **rse, const char *name)
68 SIMPLEQ_FOREACH(se, sh, se_entry) {
89 SIMPLEQ_INSERT_TAIL(sh, se, se_entry);
96 free_src(struct src_head *sh)
100 while ((se = SIMPLEQ_FIRST(sh)) != NULL) {
101 SIMPLEQ_REMOVE_HEAD(sh, se_entry);
111 convert_line(struct src_head *sh, const char *line, size_t len)
154 ret = find_src(sh, &se, key1);
162 dump_db(struct src_head *sh, struct _region *r)
175 SIMPLEQ_FOREACH(se, sh, se_entry)
208 struct src_head sh; local in function:_citrus_pivot_factory_convert
    [all...]
  /src/sys/arch/hpc/stand/hpcboot/
load_elf.cpp 212 Elf_Shdr *sh = reinterpret_cast<Elf_Shdr *> local in function:ElfLoader::symbol_block_size
223 memcpy(sh, _sh, shtab_sz);
227 for (i = 0; i < _eh.e_shnum; i++, sh++) {
228 if (strcmp(".strtab", shstrtab + sh->sh_name) == 0) {
229 _sym_blk.shstr = sh;
230 _sym_blk.stroff = sh->sh_offset;
231 } else if (strcmp(".symtab", shstrtab + sh->sh_name) == 0) {
232 _sym_blk.shsym = sh;
233 _sym_blk.symoff = sh->sh_offset;
236 sh->sh_offset = (i == _eh.e_shstrndx) ? shstrtab_offset : 0
    [all...]
  /src/sys/arch/mmeye/stand/bootcoff/
osloader.c 53 coff_find_section(FILE *fd, struct coff_filehdr *fp, struct coff_scnhdr *sh, int s_type)
60 if (fread(sh, 1, siz, fd) != siz) {
65 if (sh->s_flags == s_type)
92 struct coff_scnhdr sh; local in function:main
122 error = coff_find_section(fp, &FileHdr, &sh, COFF_STYP_TEXT);
128 ep_taddr = COFF_ALIGN(sh.s_vaddr);
129 toffset = sh.s_scnptr - (sh.s_vaddr - ep_taddr);
130 ep_tsize = sh.s_size + (sh.s_vaddr - ep_taddr)
    [all...]
  /src/sys/arch/x68k/stand/common/
exec_sub.c 122 Elf32_Shdr *sh, *sym, *str, *stab, *shstr; local in function:xk_elf
165 sh = (void *) (top + hdr->e_shoff); /* section header */
166 shstr = sh + hdr->e_shstrndx; /* .shstrtab */
170 for (u = 0; sh++, ++u < hdr->e_shnum; ) {
171 shname = shstrtab + sh->sh_name;
173 sym = sh; /* .symtab */
175 str = sh; /* .strtab */
177 stab = sh; /* .stab */

Completed in 26 milliseconds

1 2 3 4