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

1 2 3

  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.rocm/
fork-exec-non-gpu-to-gpu-execee.cpp 37 kernel () function
45 kernel<<<1, 1>>> ();
precise-memory-warning-sigsegv.cpp 32 kernel () function
41 kernel<<<1, 1>>> ();
precise-memory.cpp 32 kernel () function
40 kernel<<<1, 1>>> ();
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.rocm/
fork-exec-non-gpu-to-gpu-execee.cpp 37 kernel () function
45 kernel<<<1, 1>>> ();
precise-memory-warning-sigsegv.cpp 32 kernel () function
41 kernel<<<1, 1>>> ();
precise-memory.cpp 32 kernel () function
35 /* Simple kernel which loads from address 0 to trigger a pagefault.
50 kernel<<<1, 1>>> ();
code-object-load-while-breakpoint-hit.cpp 30 kernel () function
70 /* Launch the kernel. */
72 CHECK (hipModuleGetFunction (&function, module, "kernel"));
  /src/lib/libutil/
getbootfile.c 55 const char *kernel; local
57 kernel = _PATH_UNIX;
59 /* find real boot-kernel name */
66 * path of the kernel with the leading slash stripped
71 kernel = name;
75 if (strcmp(kernel, _PATH_UNIX) != 0 &&
76 secure_path(kernel) != 0) {
78 kernel = _PATH_UNIX;
83 return (kernel);
  /src/sys/arch/evbsh3/stand/mesboot/src/
mesboot.c 21 printf("%s [-h] [-0] [kernel binary image file]\n", progname);
28 char *kernel = NULL; local
39 if (kernel == NULL) {
40 kernel = argv[i];
50 if (kernel == NULL)
51 kernel = "/mmc0/netbsd.bin";
63 fd = open(kernel, OptRead);
66 printf("can't open %s\r\n", kernel);
89 printf("NetBSD kernel loading.");
  /src/sys/arch/mipsco/stand/common/
boot.c 80 * We won't go overboard with gzip'd kernel names. After all we can
81 * still boot a gzip'd kernel called "netbsd.mipsco" - it doesn't need
106 char *name, **namep, *dev, *kernel; local
127 kernel = devsplit(argv[1], bootname);
130 if (*kernel)
137 kernel = NULL;
151 kernel = *namep;
153 strcat(bootpath, kernel);
161 if (!win || !kernel)
164 strncpy(bi_bpath.bootpath, kernel, BTINFO_BOOTPATH_LEN)
    [all...]
  /src/sys/arch/pmax/stand/common/
boot.c 80 * We won't go overboard with gzip'd kernel names. After all we can
81 * still boot a gzip'd kernel called "netbsd.pmax" - it doesn't need
113 char *name, **namep, *dev, *kernel; local
139 if ((kernel = devname(bootname)) == NULL) {
151 kernel = *namep;
153 strcat(bootpath, kernel);
164 strncpy(bi_bpath.bootpath, kernel, BTINFO_BOOTPATH_LEN);
180 (void)printf("KERNEL RETURNED!\n");
190 * bootpath including the kernel name. This code to do this
192 * Returns the kernel name, or NULL if no kernel name specified
    [all...]
  /src/sys/arch/sgimips/stand/common/
boot.c 81 * We won't go overboard with gzip'd kernel names. After all we can
82 * still boot a gzip'd kernel called "netbsd.sgimips" - it doesn't need
124 const char *kernel = NULL; local
158 * device we've booted from. Derive the install kernel name from
169 kernel = "ip3x";
171 kernel = "ip2x";
172 strcpy(ep + 1, kernel);
190 kernel = arcbios_GetEnvironmentVariable("OSLoadFilename");
193 * argv[1] is assumed to contain the name of the kernel to boot,
199 kernel = argv[1]
    [all...]
  /src/sys/arch/arc/stand/boot/
boot.c 87 * We won't go overboard with gzip'd kernel names. After all we can
88 * still boot a gzip'd kernel called "netbsd.arc" - it doesn't need
132 const char *kernel = NULL; local
182 kernel = firmware_getenv("OSLoadFilename");
183 if (kernel == NULL)
184 kernel = arcbios_GetEnvironmentVariable("OSLoadFilename");
186 DPRINTF("kernel = %s\n", kernel ? kernel : "<null>");
189 * The first arg is assumed to contain the name of the kernel to boot
    [all...]
  /src/sys/arch/next68k/stand/boot/
boot.c 60 char kernel[KNAMEN]; variable
112 strcpy(kernel, boot_arg);
117 fd = loadfile(kernel, marks, LOAD_KERNEL);
122 printf("load of %s: %s\n", kernel, strerror(errno));
124 kgets(kernel, sizeof(kernel));
125 if (kernel[0] == '\0')
129 kernel_args = strchr(kernel, ')');
131 kernel_args = kernel;
140 if (devparse(kernel, &dev, &count, &lun, &part, &file) == 0)
    [all...]
  /src/external/bsd/iscsi/dist/src/initiator/
libkmod.c 77 openkmod(kernel_t *kernel)
79 kernel->size = 4096;
81 kernel->iov.iov_base = malloc(kernel->size);
82 kernel->iov.iov_len = kernel->size;
83 if (modctl(MODCTL_STAT, &kernel->iov)) {
87 if (kernel->size >= kernel->iov.iov_len) {
90 free(kernel->iov.iov_base)
145 kernel_t kernel; local
    [all...]
  /src/sys/arch/mmeye/stand/boot/
boot.c 161 /* "wdXX:kernel" */
167 /* "kernel" */
187 char **namep, *dev, *kernel, *bi_addr; local
200 kernel = NULL;
212 get_bsdbootname(&dev, &kernel, &howto);
214 if (kernel != NULL) {
215 DPRINTF(("kernel: %s\n", kernel));
216 kernelnames[0] = kernel;
219 DPRINTF(("kernel: NULL\n"))
    [all...]
  /src/external/apache2/llvm/dist/libcxx/utils/google-benchmark/src/
timers.cc 70 ULARGE_INTEGER kernel; local
72 kernel.HighPart = kernel_time.dwHighDateTime;
73 kernel.LowPart = kernel_time.dwLowDateTime;
76 return (static_cast<double>(kernel.QuadPart) +
  /src/external/apache2/llvm/dist/llvm/utils/benchmark/src/
timers.cc 70 ULARGE_INTEGER kernel; local
72 kernel.HighPart = kernel_time.dwHighDateTime;
73 kernel.LowPart = kernel_time.dwLowDateTime;
76 return (static_cast<double>(kernel.QuadPart) +
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/lib/
opencl_hostapp.c 20 /* Simple OpenCL application that executes a kernel on the default device
22 should be specified using the CL_SOURCE define. The name of the kernel
50 cl_kernel kernel; local
97 /* Read the OpenCL kernel source into the main memory. */
105 /* Build the OpenCL kernel. */
133 kernel = clCreateKernel (program, "testkernel", &err);
136 /* Setup the input data for the kernel. */
140 /* Execute the kernel (data parallel). */
141 CHK (clSetKernelArg (kernel, 0, sizeof (buffer), &buffer));
142 CHK (clEnqueueNDRangeKernel (queue, kernel, 1, NULL, global_work_size, NULL
    [all...]
  /src/external/gpl3/gdb/dist/gdb/testsuite/lib/
opencl_hostapp.c 20 /* Simple OpenCL application that executes a kernel on the default device
22 should be specified using the CL_SOURCE define. The name of the kernel
50 cl_kernel kernel; local
97 /* Read the OpenCL kernel source into the main memory. */
105 /* Build the OpenCL kernel. */
133 kernel = clCreateKernel (program, "testkernel", &err);
136 /* Setup the input data for the kernel. */
140 /* Execute the kernel (data parallel). */
141 CHK (clSetKernelArg (kernel, 0, sizeof (buffer), &buffer));
142 CHK (clEnqueueNDRangeKernel (queue, kernel, 1, NULL, global_work_size, NULL
    [all...]
  /src/sys/arch/emips/stand/common/
boot.c 47 * We won't go overboard with gzip'd kernel names. After all we can
48 * still boot a gzip'd kernel called "netbsd.emips" - it doesn't need
82 char *name, **namep, *dev, *kernel; local
94 * That allows for a large kernel, and a 16MB configuration still works.
116 kernel = kernelnames[0];
122 strcat(bootpath, kernel);
135 kernel = *namep;
137 strcat(bootpath, kernel);
147 strncpy(bi_bpath.bootpath, name/*kernel?*/, BTINFO_BOOTPATH_LEN);
158 (void)printf("KERNEL RETURNED!\n")
    [all...]
  /src/sys/arch/pmax/stand/smallnet/setnetimage/
setnetimage.c 81 const char *kernel, *bootfile; local
92 fprintf(stderr, "usage: %s kernel bootfile\n", getprogname());
96 kernel = argv[1];
99 if ((ifd = open(kernel, O_RDONLY)) < 0)
100 err(1, "%s", kernel);
134 errx(1, "No ELF header in %s", kernel);
141 err(1, "%s", kernel);
143 err(1, "%s", kernel);
177 err(1, "%s", kernel);
185 err(1, "%s", kernel);
    [all...]
  /src/sys/arch/sparc/stand/boot/
boot.c 70 * this list is used in sequence, to find a kernel.
168 loadk(char *kernel, u_long *marks)
176 if ((fd = open(kernel, 0)) < 0)
185 /* We want that leading 16K in front of the kernel image */
190 * Extra space for bootinfo and kernel bootstrap.
193 * is enough for the kernel to work with.
213 /* XXX - to do: inspect kernel image and set compat mode */
217 printf("%s: too large for compat mode\n", kernel);
243 char kernel[MAX_PROM_PATH]; local
265 * get default kernel
    [all...]
  /src/external/bsd/nsd/dist/simdzone/src/
bench.c 47 typedef struct kernel kernel_t;
48 struct kernel { struct
75 static int32_t bench_lex(zone_parser_t *parser, const kernel_t *kernel)
80 if ((result = kernel->bench_lex(parser, &tokens)) < 0)
108 static int32_t bench_parse(zone_parser_t *parser, const kernel_t *kernel)
114 result = kernel->parse(parser);
127 const kernel_t *kernel = NULL; local
130 for (size_t i=0; !kernel && i < n; i++) {
132 kernel = &kernels[i];
134 assert(kernel != NULL)
210 const kernel_t *kernel; local
    [all...]
  /src/external/bsd/top/dist/
machine.h 86 int *kernel; member in struct:system_info

Completed in 30 milliseconds

1 2 3