Searched refs:symbols (Results 1 - 25 of 55) sorted by path

123

/linux-master/scripts/
H A Dextract-sys-certs.pl61 my %symbols = ();
73 $symbols{$name} = $addr;
81 print "No symbols in vmlinux, trying $sysmap\n";
89 die "No symbols available\n"
92 print "Have $nr_symbols symbols\n";
95 unless (exists($symbols{"__cert_list_start"}) &&
96 exists($symbols{"system_certificate_list_size"}));
98 my $start = Math::BigInt->new($symbols{"__cert_list_start"});
101 my $size_sym = Math::BigInt->new($symbols{"system_certificate_list_size"});
H A Dunifdef.c38 * provide an option which will check symbols after
148 #define MAXSYMS 4096 /* maximum number of symbols */
180 static int nsyms; /* number of symbols */
247 case 'i': /* treat stuff controlled by these symbols as text */
297 case 's': /* only output list of symbols that control #ifs */
300 case 'S': /* list symbols with their nesting depth */
1162 errx(2, "too many symbols");
H A Dcheckkconfigsymbols.py4 """Find Kconfig symbols that are referenced but not defined."""
44 usage = "Run this tool to detect Kconfig symbols that are referenced but " \
56 "undefined Kconfig symbols")
60 help="diff undefined symbols between two commits "
65 help="find and show commits that may cause symbols to be "
74 help="print a list of max. 10 string-similar symbols")
128 print("%s: %s" % (yel("Similar symbols"), ', '.join(sims)))
130 print("%s: no similar symbols found" % yel("Similar symbols"))
133 # dictionary of (un)defined symbols
[all...]
H A Dcheckpatch.pl141 --kconfig-prefix=WORD use WORD as a prefix for Kconfig symbols (default
3878 # check for .L prefix local symbols in .S files
/linux-master/sound/pci/cs46xx/
H A Dcs46xx_dsp_spos.h66 struct dsp_symbol_entry *symbols; member in struct:dsp_symbol_desc
135 struct dsp_symbol_desc symbol_table; /* currently available loaded symbols in SP */
158 /* cache this symbols */
/linux-master/Documentation/sphinx/
H A Dparse-headers.pl378 enums and enum symbols and create cross-references for all of them.
/linux-master/arch/arm64/kernel/pi/
H A DMakefile33 $(obj)/%.pi.o: OBJCOPYFLAGS := --prefix-symbols=__pi_ \
/linux-master/arch/arm64/kvm/hyp/nvhe/
H A DMakefile8 # Tracepoint and MMIO logging symbols should not be visible at nVHE KVM as
78 # Prefixes names of ELF symbols with '__kvm_nvhe_'.
90 cmd_hypcopy = $(OBJCOPY) --prefix-symbols=__kvm_nvhe_ $< $@
/linux-master/arch/riscv/kernel/pi/
H A DMakefile26 $(obj)/%.pi.o: OBJCOPYFLAGS := --prefix-symbols=__pi_ \
/linux-master/arch/s390/
H A DMakefile21 KBUILD_CFLAGS += $(call cc-option,-munaligned-symbols,)
/linux-master/arch/s390/kernel/
H A Dmodule.c146 Elf_Sym *symbols; local
171 symbols = (void *) hdr + symtab->sh_offset;
174 if (symbols[i].st_shndx == SHN_UNDEF &&
175 strcmp(strings + symbols[i].st_name,
178 symbols[i].st_shndx = SHN_ABS;
270 undefined symbols have been resolved. */
/linux-master/arch/s390/kernel/vdso64/
H A DMakefile28 KBUILD_CFLAGS_64 := $(filter-out -munaligned-symbols,$(KBUILD_CFLAGS_64))
/linux-master/arch/x86/boot/
H A Dheader.S425 # symbols.
429 # symbols.
/linux-master/arch/x86/crypto/
H A Dsha256-avx-asm.S131 # Rotate values of symbols X0...X3
141 # Rotate values of symbols a...h
H A Dsha256-avx2-asm.S130 # Rotate values of symbols X0...X3
140 # Rotate values of symbols a...h
H A Dsha256-ssse3-asm.S125 # Rotate values of symbols X0...X3
135 # Rotate values of symbols a...h
H A Dsha512-avx-asm.S105 # Rotate symbols a..h right
H A Dsha512-avx2-asm.S132 # Rotate values of symbols Y0...Y3
143 # Rotate symbols a..h right
H A Dsha512-ssse3-asm.S103 # Rotate symbols a..h right
/linux-master/drivers/firmware/efi/libstub/
H A DMakefile138 --prefix-symbols=__efistub_
142 # symbols in .init section and make sure that no absolute symbols references
145 --prefix-symbols=__efistub_
148 # For LoongArch, keep all the symbols in .init section and make sure that no
149 # absolute symbols references exist.
151 --prefix-symbols=__efistub_
/linux-master/drivers/net/wireless/ath/ath5k/
H A Dpcu.c118 int bitrate, bits, symbols, symbol_bits; local
164 symbols = DIV_ROUND_UP(bits * 10, symbol_bits);
166 dur = sifs + preamble + (sym_time * symbols);
/linux-master/drivers/net/wireless/ath/ath9k/
H A Dxmit.c1123 /* find number of symbols: PLCP + data */
1143 int symbols, bits; local
1147 symbols = sgi ? TIME_SYMBOLS_HALFGI(usec) : TIME_SYMBOLS(usec);
1148 bits = symbols * bits_per_symbol[mcs % 8][ht40] * streams;
/linux-master/include/linux/
H A Dpe.h210 uint32_t symbols; /* number of symbols */ member in struct:pe_hdr
/linux-master/include/trace/stages/
H A Dstage3_trace_output.h77 static const struct trace_print_flags symbols[] = \
79 trace_print_symbols_seq(p, value, symbols); \
94 static const struct trace_print_flags_u64 symbols[] = \
96 trace_print_symbols_seq_u64(p, value, symbols); \
/linux-master/lib/zstd/decompress/
H A Dhuf_decompress.c306 /* Increase the weight for all non-zero probability symbols by scale. */
328 BYTE symbols[HUF_SYMBOLVALUE_MAX + 1]; member in struct:__anon29
368 /* Compute symbols and rankStart given rankVal:
372 * symbols contains the symbols ordered by weight. First are the rankVal[0]
373 * weight 0 symbols, followed by the rankVal[1] weight 1 symbols, and so on.
374 * symbols[0] is filled (but unused) to avoid a branch.
394 wksp->symbols[wksp->rankStart[w]++] = (BYTE)(n+u);
399 wksp->symbols[wks
[all...]

Completed in 356 milliseconds

123