HomeSort by: relevance | last modified time | path
    Searched refs:sb (Results 1 - 25 of 1354) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/gpl3/binutils/dist/gas/
sb.h 0 /* sb.h - header file for string buffer manipulation routines
42 complicated, hence the sb.
44 An sb is allocated by the caller. */
46 typedef struct sb struct
52 sb; typedef in typeref:struct:sb
54 extern void sb_new (sb *);
55 extern void sb_build (sb *, size_t);
56 extern void sb_kill (sb *);
57 extern void sb_add_sb (sb *, sb *);
    [all...]
macro.h 47 sb name; /* Name of the formal. */
48 sb def; /* The default value. */
49 sb actual; /* The actual argument (changed on each expansion). */
63 sb sub; /* Substitution text. */
85 extern int buffer_and_nest (const char *, const char *, sb *,
86 size_t (*) (sb *));
89 extern macro_entry *define_macro (sb *, sb *, size_t (*) (sb *));
90 extern int check_macro (const char *, sb *, const char **, macro_entry **)
    [all...]
  /src/external/gpl3/binutils.old/dist/gas/
sb.h 0 /* sb.h - header file for string buffer manipulation routines
42 complicated, hence the sb.
44 An sb is allocated by the caller. */
46 typedef struct sb struct
52 sb; typedef in typeref:struct:sb
54 extern void sb_new (sb *);
55 extern void sb_build (sb *, size_t);
56 extern void sb_kill (sb *);
57 extern void sb_add_sb (sb *, sb *);
    [all...]
macro.h 47 sb name; /* Name of the formal. */
48 sb def; /* The default value. */
49 sb actual; /* The actual argument (changed on each expansion). */
63 sb sub; /* Substitution text. */
85 extern int buffer_and_nest (const char *, const char *, sb *,
86 size_t (*) (sb *));
89 extern macro_entry *define_macro (sb *, sb *, size_t (*) (sb *));
90 extern int check_macro (const char *, sb *, const char **, macro_entry **)
    [all...]
  /src/external/gpl3/gdb/dist/sim/testsuite/cris/c/
sched3.c 13 struct sched_param sb; local
14 sb.sched_priority = 0;
15 if (sched_setscheduler (getpid (), SCHED_OTHER, &sb) != 0
16 || sb.sched_priority != 0)
18 sb.sched_priority = 5;
19 if (sched_setscheduler (getpid (), SCHED_OTHER, &sb) != -1
21 || sb.sched_priority != 5)
sched4.c 13 struct sched_param sb; local
14 sb.sched_priority = 0;
15 if (sched_setparam (getpid (), &sb) != 0
16 || sb.sched_priority != 0)
18 sb.sched_priority = 5;
19 if (sched_setparam (getpid (), &sb) == 0
21 || sb.sched_priority != 5)
sched2.c 13 struct sched_param sb; local
14 memset (&sb, -1, sizeof sb);
15 if (sched_getparam (getpid (), &sb) != 0
16 || sb.sched_priority != 0)
sched8.c 12 struct sched_param sb; local
13 memset (&sb, -1, sizeof sb);
14 if (sched_getparam (99, &sb) != -1
mmap7.c 8 #define MMAP_SIZE1 ((sb.st_size + 8192) & ~8191)
  /src/external/gpl3/gdb.old/dist/sim/testsuite/cris/c/
sched3.c 13 struct sched_param sb; local
14 sb.sched_priority = 0;
15 if (sched_setscheduler (getpid (), SCHED_OTHER, &sb) != 0
16 || sb.sched_priority != 0)
18 sb.sched_priority = 5;
19 if (sched_setscheduler (getpid (), SCHED_OTHER, &sb) != -1
21 || sb.sched_priority != 5)
sched4.c 13 struct sched_param sb; local
14 sb.sched_priority = 0;
15 if (sched_setparam (getpid (), &sb) != 0
16 || sb.sched_priority != 0)
18 sb.sched_priority = 5;
19 if (sched_setparam (getpid (), &sb) == 0
21 || sb.sched_priority != 5)
sched2.c 13 struct sched_param sb; local
14 memset (&sb, -1, sizeof sb);
15 if (sched_getparam (getpid (), &sb) != 0
16 || sb.sched_priority != 0)
sched8.c 12 struct sched_param sb; local
13 memset (&sb, -1, sizeof sb);
14 if (sched_getparam (99, &sb) != -1
mmap7.c 8 #define MMAP_SIZE1 ((sb.st_size + 8192) & ~8191)
  /src/lib/libc/compat/sys/
compat_statvfs.c 68 struct statvfs sb; local
69 int error = __statvfs190(path, &sb, 0);
71 statvfs_to_statvfs90(&sb, buf);
78 struct statvfs sb; local
79 int error = __statvfs190(path, &sb, flags);
81 statvfs_to_statvfs90(&sb, buf);
88 struct statvfs sb; local
89 int error = __fstatvfs190(fd, &sb, 0);
91 statvfs_to_statvfs90(&sb, buf);
98 struct statvfs sb; local
109 struct statvfs *sb = calloc(count, sizeof(*sb)); local
    [all...]
compat_fhstatvfs.c 54 struct statvfs sb; local
55 int error = __fhstatvfs190(fhp, FHANDLE30_SIZE, &sb, 0);
57 statvfs_to_statvfs90(&sb, buf);
compat_fhstatvfs1.c 55 struct statvfs sb; local
56 int error = __fhstatvfs190(fhp, FHANDLE30_SIZE, &sb, flags);
58 statvfs_to_statvfs90(&sb, buf);
  /src/sys/dev/dtv/
dtv_scatter.c 52 dtv_scatter_buf_init(struct dtv_scatter_buf *sb)
54 sb->sb_pool = pool_cache_init(PAGE_SIZE, 0, 0, 0,
57 sb->sb_size = 0;
58 sb->sb_npages = 0;
59 sb->sb_page_ary = NULL;
63 dtv_scatter_buf_destroy(struct dtv_scatter_buf *sb)
66 dtv_scatter_buf_set_size(sb, 0);
67 pool_cache_destroy(sb->sb_pool);
68 sb->sb_pool = 0;
69 sb->sb_npages = 0
    [all...]
  /src/sys/lib/libsa/
stat.c 37 stat(const char *str, struct stat *sb)
44 rv = fstat(fd, sb);
  /src/lib/libutil/
secure_path.c 52 struct stat sb; local
60 if (lstat(path, &sb) < 0)
62 else if (!S_ISREG(sb.st_mode))
64 else if (sb.st_uid != 0)
66 else if ((sb.st_mode & (S_IWGRP | S_IWOTH)) != 0)
  /src/external/gpl3/binutils/dist/gprofng/src/
UserLabel.cc 61 StringBuilder sb;
62 sb.append ('(');
65 sb.append (str_expr);
66 sb.append (NTXT (" || ("));
70 sb.append (NTXT ("TSTAMP"));
71 sb.append (NTXT (">="));
72 sb.append (timeStart);
75 sb.append (NTXT (" && "));
80 sb.append (NTXT ("TSTAMP"));
81 sb.append ('<')
134 StringBuilder sb; local
    [all...]
  /src/external/gpl3/binutils.old/dist/gprofng/src/
UserLabel.cc 61 StringBuilder sb;
62 sb.append ('(');
65 sb.append (str_expr);
66 sb.append (NTXT (" || ("));
70 sb.append (NTXT ("TSTAMP"));
71 sb.append (NTXT (">="));
72 sb.append (timeStart);
75 sb.append (NTXT (" && "));
80 sb.append (NTXT ("TSTAMP"));
81 sb.append ('<')
134 StringBuilder sb; local
    [all...]
  /src/usr.bin/find/
ls.c 66 struct stat *sb) /* stat buffer */
70 (void)printf("%7lu %6lld ", (u_long)sb->st_ino,
71 (long long)sb->st_blocks);
72 (void)strmode(sb->st_mode, modep);
73 (void)printf("%s %3lu %-*s %-*s ", modep, (unsigned long)sb->st_nlink,
74 LOGIN_NAME_MAX, user_from_uid(sb->st_uid, 0), LOGIN_NAME_MAX,
75 group_from_gid(sb->st_gid, 0));
77 if (S_ISCHR(sb->st_mode) || S_ISBLK(sb->st_mode))
79 (unsigned long long)major(sb->st_rdev)
    [all...]
  /src/sys/fs/v7fs/
v7fs_superblock_util.c 66 struct v7fs_superblock *sb = &fs->superblock; local
69 stat->total_blocks = sb->volume_size - sb->datablock_start_sector;
70 stat->total_inode = V7FS_MAX_INODE(sb);
71 stat->free_inode = sb->total_freeinode;
72 stat->free_blocks = sb->total_freeblock;
73 stat->total_files = stat->total_inode - sb->total_freeinode - 1;
82 const struct v7fs_superblock *sb = &fs->superblock; local
84 #define print(x) printf("%s: %d\n", #x, sb->x)
95 time_t t = sb->update_time
    [all...]
  /src/external/ibm-public/postfix/dist/src/util/
sock_addr.c 11 /* int sock_addr_cmp_addr(sa, sb)
13 /* const struct sockaddr *sb;
15 /* int sock_addr_cmp_port(sa, sb)
17 /* const struct sockaddr *sb;
19 /* int SOCK_ADDR_EQ_ADDR(sa, sb)
21 /* const struct sockaddr *sb;
23 /* int SOCK_ADDR_EQ_PORT(sa, sb)
25 /* const struct sockaddr *sb;
114 const struct sockaddr *sb)
116 if (sa->sa_family != sb->sa_family
    [all...]

Completed in 26 milliseconds

1 2 3 4 5 6 7 8 91011>>