Lines Matching refs:nList
1130 auto *nList = reinterpret_cast<typename LP::nlist *>(buf); in writeTo() local
1134 nList->n_strx = entry.strx; in writeTo()
1135 nList->n_type = entry.type; in writeTo()
1136 nList->n_sect = entry.sect; in writeTo()
1137 nList->n_desc = entry.desc; in writeTo()
1138 nList->n_value = entry.value; in writeTo()
1139 ++nList; in writeTo()
1144 nList->n_strx = entry.strx; in writeTo()
1161 nList->n_type = scope | N_ABS; in writeTo()
1162 nList->n_sect = NO_SECT; in writeTo()
1163 nList->n_value = defined->value; in writeTo()
1165 nList->n_type = scope | N_SECT; in writeTo()
1166 nList->n_sect = defined->isec->parent->index; in writeTo()
1168 nList->n_value = defined->getVA(); in writeTo()
1170 nList->n_desc |= defined->thumb ? N_ARM_THUMB_DEF : 0; in writeTo()
1171 nList->n_desc |= defined->isExternalWeakDef() ? N_WEAK_DEF : 0; in writeTo()
1172 nList->n_desc |= in writeTo()
1175 uint16_t n_desc = nList->n_desc; in writeTo()
1186 nList->n_type = N_EXT; in writeTo()
1189 nList->n_desc = n_desc; in writeTo()
1191 ++nList; in writeTo()