Lines Matching refs:nList
1389 auto *nList = reinterpret_cast<typename LP::nlist *>(buf); in writeTo() local
1393 nList->n_strx = entry.strx; in writeTo()
1394 nList->n_type = entry.type; in writeTo()
1395 nList->n_sect = entry.sect; in writeTo()
1396 nList->n_desc = entry.desc; in writeTo()
1397 nList->n_value = entry.value; in writeTo()
1398 ++nList; in writeTo()
1403 nList->n_strx = entry.strx; in writeTo()
1420 nList->n_type = scope | N_ABS; in writeTo()
1421 nList->n_sect = NO_SECT; in writeTo()
1422 nList->n_value = defined->value; in writeTo()
1424 nList->n_type = scope | N_SECT; in writeTo()
1425 nList->n_sect = defined->isec()->parent->index; in writeTo()
1427 nList->n_value = defined->getVA(); in writeTo()
1429 nList->n_desc |= defined->isExternalWeakDef() ? N_WEAK_DEF : 0; in writeTo()
1430 nList->n_desc |= in writeTo()
1433 uint16_t n_desc = nList->n_desc; in writeTo()
1444 nList->n_type = N_EXT; in writeTo()
1447 nList->n_desc = n_desc; in writeTo()
1449 ++nList; in writeTo()