Lines Matching refs:nu
1324 struct universe **ua, *nu;
1337 nu = new_universe (MDL);
1338 if (!nu)
1346 nu -> name = nu_name;
1446 nu -> lookup_func = lookup_hashed_option;
1447 nu -> option_state_dereference = hashed_option_state_dereference;
1448 nu -> foreach = hashed_option_space_foreach;
1449 nu -> save_func = save_hashed_option;
1450 nu -> delete_func = delete_hashed_option;
1451 nu -> encapsulate = hashed_option_space_encapsulate;
1452 nu -> decode = parse_option_buffer;
1453 nu -> length_size = lsize;
1454 nu -> tag_size = tsize;
1457 nu->get_tag = getUChar;
1458 nu->store_tag = putUChar;
1461 nu->get_tag = getUShort;
1462 nu->store_tag = putUShort;
1465 nu->get_tag = getULong;
1466 nu->store_tag = putULong;
1473 nu->get_length = NULL;
1474 nu->store_length = NULL;
1477 nu->get_length = getUChar;
1478 nu->store_length = putUChar;
1481 nu->get_length = getUShort;
1482 nu->store_length = putUShort;
1487 nu -> index = universe_count++;
1488 if (nu -> index >= universe_max) {
1497 universes [nu -> index] = nu;
1498 if (!option_name_new_hash(&nu->name_hash, hsize, MDL) ||
1499 !option_code_new_hash(&nu->code_hash, hsize, MDL))
1500 log_fatal("Can't allocate %s option hash table.", nu->name);
1501 universe_hash_add (universe_hash, nu -> name, 0, nu, MDL);
1506 dfree(nu, MDL);