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

1 2

  /src/sys/dev/sysmon/
sysmon_taskq.c 208 struct sysmon_task *lst; local
211 TAILQ_FOREACH(lst, &sysmon_task_queue, st_list) {
212 if (st->st_pri > lst->st_pri) {
213 TAILQ_INSERT_BEFORE(lst, st, st_list);
218 if (lst == NULL)
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/acr/
nouveau_nvkm_subdev_acr_base.c 331 struct nvkm_acr_lsf *lsf, *lst; local
347 list_for_each_entry_safe(lsf, lst, &acr->lsf, head) {
  /src/tests/lib/libc/gen/
t_fpsetmask.c 345 fp_except_t msk, lst[] = { FP_X_INV, FP_X_DZ, FP_X_OFL, FP_X_UFL }; local
350 for (i = 0; i < __arraycount(lst); i++) {
351 fpsetmask(msk | lst[i]);
352 ATF_CHECK((fpgetmask() & lst[i]) != 0);
353 fpsetmask(msk & ~lst[i]);
354 ATF_CHECK((fpgetmask() & lst[i]) == 0);
  /src/usr.bin/rpcgen/
rpc_util.c 107 findval(list *lst, const char *val, int (*cmp)(definition *, const char *))
110 for (; lst != NULL; lst = lst->next) {
111 if ((*cmp) (lst->val, val)) {
112 return (lst->val);
124 list *lst; local
128 lst = ALLOC(list);
129 lst->val = val;
130 lst->next = NULL
    [all...]
  /src/external/ibm-public/postfix/dist/src/postconf/
postconf_builtin.c 391 const CONFIG_LONG_TABLE *lst; local
441 for (lst = pcf_long_table; lst->name; lst++)
442 PCF_PARAM_TABLE_ENTER(pcf_param_table, lst->name,
443 PCF_PARAM_FLAG_BUILTIN, (void *) lst,
  /src/sbin/iscsictl/
iscsic_daemonif.c 417 iscsid_get_list_req_t lst; local
425 lst.list_kind = kind;
426 send_request(ISCSID_GET_LIST, sizeof(lst), &lst);
619 iscsid_get_list_req_t lst; local
630 lst.list_kind = ISNS_LIST;
631 send_request(ISCSID_GET_LIST, sizeof(lst), &lst);
751 iscsid_get_list_req_t lst; local
762 lst.list_kind = INITIATOR_LIST
    [all...]
  /src/external/bsd/dhcpcd/dist/src/
dhcp-common.c 422 char *slbl = lbl, *lst = NULL; local
444 lst = lbl - 1;
473 if (lst) {
475 *lst = '\0';
476 return lst - slbl;
  /src/external/mit/libuv/dist/src/unix/
os390-syscalls.c 106 static void maybe_resize(uv__os390_epoll* lst, unsigned int len) {
112 if (len <= lst->size)
115 if (lst->size == 0)
119 event = lst->items[lst->size - 1];
120 lst->items[lst->size - 1].fd = -1;
124 newlst = uv__reallocf(lst->items, newsize * sizeof(lst->items[0]));
128 for (i = lst->size; i < newsize; ++i
189 uv__os390_epoll* lst; local
214 uv__os390_epoll* lst; local
360 uv__os390_epoll* lst; local
    [all...]
  /src/external/gpl3/gcc/dist/gcc/config/vms/
vms-ld.c 391 struct lst
400 struct lst items [1];
406 struct lst items [2];
390 struct lst struct
  /src/external/gpl3/gcc.old/dist/gcc/config/vms/
vms-ld.c 391 struct lst
400 struct lst items [1];
406 struct lst items [2];
390 struct lst struct
  /src/usr.bin/crunch/crunchgen/
crunchgen.c 557 static void output_strlst(FILE *outf, strlst_t *lst);
1031 strlst_t *lst; local
1055 for (lst = vars; lst != NULL; lst = lst->next)
1056 fprintf(outmk, "%s\\n", lst->str);
1066 for (lst = vars; lst != NULL; lst = lst->next
    [all...]
  /src/usr.sbin/edquota/
edquota.c 724 int lst; local
762 if (waitpid(pid, &lst, 0) == -1)
766 if (!WIFEXITED(lst) || WEXITSTATUS(lst) != 0)
  /src/external/bsd/wpa/dist/wpa_supplicant/wpa_gui-qt4/
peers.cpp 428 QModelIndexList lst = model.match(model.index(0, 0), local
431 for (int i = 0; i < lst.size(); i++) {
433 item = model.itemFromIndex(lst[i]);
438 model.removeRow(lst[i].row());
566 QModelIndexList lst = model.match(model.index(0, 0), peer_role_bss_id,
568 if (lst.size() == 0)
570 model.removeRow(lst[0].row());
786 QModelIndexList lst = model.match(model.index(0, 0), peer_role_address,
788 if (lst.size() == 0)
790 return model.itemFromIndex(lst[0])
1775 QModelIndexList lst; local
    [all...]
  /src/external/bsd/libarchive/dist/libarchive/
archive_read_disk_posix.c 224 struct stat lst; member in struct:tree
257 #define hasLstat 32 /* The lst entry is valid. */
845 const struct stat *lst;/* lstat() information */ local
855 lst = NULL;
879 lst = tree_current_lstat(t);
880 if (lst == NULL) {
901 } while (lst == NULL);
964 st = lst;
1294 * valid here (though t->lst is), which complicates the logic a
1299 t->lst.st_dev, t->lst.st_ino, &t->restore_time)
2555 static const struct stat *lst, *st; local
    [all...]
archive_read_disk_windows.c 155 BY_HANDLE_FILE_INFORMATION lst; member in struct:tree
210 #define hasLstat 32 /* The lst entry is valid. */
904 const BY_HANDLE_FILE_INFORMATION *lst; local
909 lst = NULL;
930 lst = tree_current_lstat(t);
931 if (lst == NULL) {
939 } while (lst == NULL);
990 st = lst;
1336 bhfi_dev(&(t->lst)), bhfi_ino(&(t->lst)),
    [all...]
archive_write_disk_windows.c 1555 BY_HANDLE_FILE_INFORMATION lst; local
1576 r = file_information(a, a->name, &lst, &lst_mode, 1);
1582 if (lst.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)
1587 a->st = lst;
1591 a->st = lst;
  /src/external/gpl2/lvm2/dist/lib/metadata/
metadata.c 462 struct dm_list *lst; local
465 while ((lst = dm_list_first(&vg->lvs))) {
466 lvl = dm_list_item(lst, struct lv_list);
  /src/external/gpl3/binutils/dist/gprofng/src/
DbeView.cc 2679 int lst; local
2681 lst = filters->size ();
2683 lst = n > filters->size () ? filters->size () : n + 1;
2684 for (int i = n == -1 ? 0 : n; i < lst; i++)
DbeSession.cc 1378 Vector<char*> *lst = get_group_or_expt (path); local
1379 for (int j1 = 0; j1 < lst->size (); j1++)
1383 open_experiment (exp, lst->get (j1));
1387 lst->destroy ();
1388 delete lst;
  /src/external/gpl3/binutils.old/dist/gprofng/src/
DbeView.cc 2679 int lst; local
2681 lst = filters->size ();
2683 lst = n > filters->size () ? filters->size () : n + 1;
2684 for (int i = n == -1 ? 0 : n; i < lst; i++)
DbeSession.cc 1378 Vector<char*> *lst = get_group_or_expt (path); local
1379 for (int j1 = 0; j1 < lst->size (); j1++)
1383 open_experiment (exp, lst->get (j1));
1387 lst->destroy ();
1388 delete lst;
  /src/usr.bin/xlint/lint1/
tree.c 2790 tspec_t lst = ltp->t_subt->t_tspec, rst = rtp->t_subt->t_tspec; local
2792 if (lst == VOID || rst == VOID) {
2795 (lst == FUNC || rst == FUNC)) {
2798 *(lst == FUNC ? &lsts : &rsts) = "function pointer";
2799 *(lst == VOID ? &lsts : &rsts) = "'void *'";
2811 if (lst == FUNC && rst == FUNC) {
2861 tspec_t lst = lstp->t_tspec; local
2864 if ((lst == VOID && rst == FUNC) || (lst == FUNC && rst == VOID)) {
3001 tspec_t lt, tspec_t lst,
3242 tspec_t lt, rt, lst = NO_TSPEC, rst = NO_TSPEC; local
    [all...]
  /src/external/gpl3/binutils/dist/bfd/
som.c 2428 /* Read the lst header and determine where the SOM directory begins. */
6116 /* Read in the LST from the archive. */
6318 struct som_external_lst_header lst,
6332 hash_size = bfd_getb32 (lst.hash_size);
6342 module_count = bfd_getb32 (lst.module_count);
6376 curr_som_offset = 8 + 2 * sizeof (struct ar_hdr) + bfd_getb32 (lst.file_end);
6464 /* Fill in the lst symbol record. */
6578 /* Write out the LST for the archive.
6593 struct som_external_lst_header lst;
6608 /* Account for the lst header first. *
6592 struct som_external_lst_header lst; local
    [all...]
  /src/external/gpl3/binutils.old/dist/bfd/
som.c 2428 /* Read the lst header and determine where the SOM directory begins. */
6110 /* Read in the LST from the archive. */
6312 struct som_external_lst_header lst,
6326 hash_size = bfd_getb32 (lst.hash_size);
6336 module_count = bfd_getb32 (lst.module_count);
6370 curr_som_offset = 8 + 2 * sizeof (struct ar_hdr) + bfd_getb32 (lst.file_end);
6458 /* Fill in the lst symbol record. */
6572 /* Write out the LST for the archive.
6587 struct som_external_lst_header lst;
6602 /* Account for the lst header first. *
6586 struct som_external_lst_header lst; local
    [all...]
  /src/external/gpl3/gdb/dist/bfd/
som.c 2428 /* Read the lst header and determine where the SOM directory begins. */
6109 /* Read in the LST from the archive. */
6311 struct som_external_lst_header lst,
6325 hash_size = bfd_getb32 (lst.hash_size);
6335 module_count = bfd_getb32 (lst.module_count);
6369 curr_som_offset = 8 + 2 * sizeof (struct ar_hdr) + bfd_getb32 (lst.file_end);
6457 /* Fill in the lst symbol record. */
6571 /* Write out the LST for the archive.
6586 struct som_external_lst_header lst;
6601 /* Account for the lst header first. *
6585 struct som_external_lst_header lst; local
    [all...]

Completed in 255 milliseconds

1 2