/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
sanitizer_coverage_win_sections.cc | 34 #pragma section(".SCOV$GA", read, write) // NOLINT 39 #pragma section(".SCOV$GZ", read, write) // NOLINT 43 #pragma section(".SCOV$CA", read, write) // NOLINT 46 #pragma section(".SCOV$CZ", read, write) // NOLINT 54 #pragma section(".SCOVP$A", read) // NOLINT 57 #pragma section(".SCOVP$Z", read) // NOLINT
|
sanitizer_win_dll_thunk.cc | 58 #pragma section(".DLLTH$A", read) // NOLINT 59 #pragma section(".DLLTH$Z", read) // NOLINT 89 #pragma section(".CRT$XIB", long, read) // NOLINT 98 #pragma section(".CRT$XLAB", long, read) // NOLINT
|
sanitizer_win_weak_interception.cc | 57 #pragma section(".WEAK$A", read) // NOLINT 58 #pragma section(".WEAK$Z", read) // NOLINT 81 #pragma section(".CRT$XIB", long, read) // NOLINT 90 #pragma section(".CRT$XLAB", long, read) // NOLINT
|
/src/tests/lib/libc/gen/ |
h_execsig.c | 38 * 3. write a byte to be read from the child's stdin 42 * signal before it returnsa byte from read(2). 52 if (read(STDIN_FILENO, (char[]){0}, 1) == -1) 53 err(1, "read");
|
/src/usr.bin/make/unit-tests/ |
cmdline-redirect-stdin.mk | 3 # Demonstrate that the '!=' assignment operator can read individual lines 11 | ${MAKE} -f ${MAKEFILE} read-lines 13 .if make(read-lines) 14 line1!= read line; echo "$$line" 15 line2!= read line; echo "$$line" 23 # is actually specified by POSIX, which says that "The read utility shall 24 # read a single line from standard input". This is the reason why the shell 27 . error The shell's read command does not read a single line. 33 read-lines: .PHON [all...] |
directive-for-null.mk | 5 # expect: make: (stdin):2: Zero byte read from file
|
/src/sys/external/bsd/vchiq/dist/interface/vchiq_arm/ |
vchiq_util.c | 46 queue->read = 0; 69 return queue->read == queue->write; 74 return queue->write == queue->read + queue->size; 82 while (queue->write == queue->read + queue->size) { 89 * Write to queue->storage must be visible after read from 90 * queue->read 109 while (queue->write == queue->read) { 118 * Read from queue->storage must be visible after read from 123 return queue->storage[queue->read & (queue->size - 1)] [all...] |
/src/sys/external/bsd/compiler_rt/dist/lib/asan/ |
asan_globals_win.cc | 19 #pragma section(".ASAN$GA", read, write) // NOLINT 20 #pragma section(".ASAN$GZ", read, write) // NOLINT 53 #pragma section(".CRT$XCU", long, read) // NOLINT 54 #pragma section(".CRT$XTX", long, read) // NOLINT
|
asan_win_dynamic_runtime_thunk.cc | 36 #pragma section(".CRT$XIB", long, read) // NOLINT 37 #pragma section(".CRT$XID", long, read) // NOLINT 38 #pragma section(".CRT$XCAB", long, read) // NOLINT 39 #pragma section(".CRT$XTW", long, read) // NOLINT 40 #pragma section(".CRT$XTY", long, read) // NOLINT 41 #pragma section(".CRT$XLAB", long, read) // NOLINT
|
/src/sys/stand/ |
cat.c | 52 while (read(fd, &c, 1) == 1)
|
/src/lib/libc/ssp/ |
ssp_redirect.c | 51 if (read(-1, NULL, 0) == -1)
|
/src/tests/lib/libstdc++/ |
h_cin_nosync.cc | 37 std::cin.read(buf, sizeof(buf));
|
/src/sys/arch/ofppc/stand/ofwboot/ |
mbr.c | 58 size_t read; local in function:search_mbr_label 74 buf, &read) == 0 && read == DEV_BSIZE) 98 size_t read; local in function:find_mbr_part 103 if (strategy(devp, F_READ, off, DEV_BSIZE, buf, &read) 104 || read != DEV_BSIZE) 126 if (strategy(devp, F_READ, off, DEV_BSIZE, buf, &read) 127 || read != DEV_BSIZE) {
|
/src/usr.sbin/puffs/rump_syspuffs/ |
rump_syspuffs.c | 127 /* read args */ 128 if (read(sv[1], &len, sizeof(len)) != sizeof(len)) 132 if ((size_t)read(sv[1], canon_dir, len) != len) 134 if (read(sv[1], &len, sizeof(len)) != sizeof(len)) 138 if ((size_t)read(sv[1], canon_dev, len) != len) 140 if (read(sv[1], mntflags, sizeof(*mntflags)) != sizeof(*mntflags)) 142 if (read(sv[1], kargs, sizeof(len)) != sizeof(len)) /* unused now */ 144 if (read(sv[1], kargs, sizeof(*kargs)) != sizeof(*kargs)) 146 if (read(sv[1], pflags, sizeof(*pflags)) != sizeof(*pflags))
|
/src/games/backgammon/common_source/ |
save.c | 154 read(fdesc, board, sizeof board); 155 read(fdesc, off, sizeof off); 156 read(fdesc, in, sizeof in); 157 read(fdesc, mm->dice, sizeof mm->dice); 158 read(fdesc, &cturn, sizeof cturn); 159 read(fdesc, &dlast, sizeof dlast); 160 read(fdesc, &pnum, sizeof pnum); 161 read(fdesc, &rscore, sizeof rscore); 162 read(fdesc, &wscore, sizeof wscore); 163 read(fdesc, &gvalue, sizeof gvalue) [all...] |
/src/lib/libc/sys/ |
eventfd_read.c | 47 switch (read(efd, &val, sizeof(val))) {
|
/src/sbin/ifconfig/ |
ifconfig_hostops.c | 45 .op_read = read,
|
/src/sys/arch/atari/stand/tostools/libtos/ |
cread.h | 42 #define read cread macro
|
aout.c | 89 if (read(fd, (char *)&ehdr, sizeof(ehdr)) != sizeof(ehdr)) 114 if (read(fd, (char *)&stringsz, sizeof(long)) != sizeof(long)) 127 * Read text & data, clear bss 130 if ((read(fd, (char *)(od->kstart), ehdr.a_text) != ehdr.a_text) 131 ||(read(fd,(char *)(od->kstart+textsz),ehdr.a_data) != ehdr.a_data)) 136 * Read symbol and string table 144 if (read(fd, (char *)p, ehdr.a_syms) != ehdr.a_syms) 148 if (read(fd, (char *)p, stringsz) != stringsz) 159 /* 2 */ "Cannot read string-table size", 162 /* 5 */ "Unable to read kernel image" [all...] |
/src/sys/external/bsd/drm2/dist/drm/i915/gt/ |
intel_workarounds_types.h | 20 u32 read; member in struct:i915_wa
|
/src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/fuse/ |
priv.h | 10 u32 (*read)(struct nvkm_fuse *, u32 addr); member in struct:nvkm_fuse_func
|
/src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/timer/ |
nouveau_nvkm_subdev_timer_gk20a.c | 34 .read = nv04_timer_read,
|
/src/lib/libc/rpc/ |
svc_fdset.h | 11 # undef read 12 # define read(a, b, c) rump_sys_read(a, b, c) macro
|
/src/sys/arch/evbppc/virtex/ |
dcr.h | 59 #define DCR_BST_BODY(base, read, write) \ 66 .pbss_read_4 = (read), \
|
/src/sys/arch/i386/stand/lib/test/ |
sanamespace.h | 10 #undef read
|