Home
last modified time | relevance | path

Searched refs:obj_max (Results 1 – 20 of 20) sorted by relevance

/dports/games/angband/Angband-4.2.2/src/
H A Dcave.c371 c->obj_max = OBJECT_LIST_SIZE - 1; in cave_new()
398 for (i = 1; i < c->obj_max; i++) { in cave_free()
440 for (i = 1; i < c->obj_max; i++) in list_object()
445 for (i = 1; i < c->obj_max; i++) { in list_object()
462 c->objects[c->obj_max] = obj; in list_object()
463 obj->oidx = c->obj_max; in list_object()
464 for (i = c->obj_max + 1; i <= c->obj_max + OBJECT_LIST_INCR; i++) in list_object()
466 c->obj_max += OBJECT_LIST_INCR; in list_object()
471 for (i = player->cave->obj_max; i <= c->obj_max; i++) in list_object()
473 player->cave->obj_max = c->obj_max; in list_object()
[all …]
H A Dgen-chunk.c333 (dest->obj_max + source->obj_max + 2) in chunk_copy()
335 for (i = 0; i <= source->obj_max; i++) { in chunk_copy()
336 dest->objects[dest->obj_max + i] = source->objects[i]; in chunk_copy()
337 if (dest->objects[dest->obj_max + i] != NULL) in chunk_copy()
338 dest->objects[dest->obj_max + i]->oidx = dest->obj_max + i; in chunk_copy()
341 dest->obj_max += source->obj_max + 1; in chunk_copy()
342 source->obj_max = 1; in chunk_copy()
H A Dgenerate.c980 p->cave->objects = mem_realloc(p->cave->objects, (chunk->obj_max + 1) in cave_generate()
982 p->cave->obj_max = chunk->obj_max; in cave_generate()
983 for (i = 0; i <= p->cave->obj_max; i++) { in cave_generate()
1107 p->cave->objects = mem_realloc(p->cave->objects, (chunk->obj_max + 1) in cave_generate()
1109 p->cave->obj_max = chunk->obj_max; in cave_generate()
1110 for (i = 0; i <= p->cave->obj_max; i++) { in cave_generate()
1289 for (i = 0; i < p->cave->obj_max; i++) { in prepare_next_level()
H A Dload.c1377 rd_u16b(&c->obj_max);
1379 (c->obj_max + 1) * sizeof(struct object*));
1380 for (i = 0; i <= c->obj_max; i++)
1563 player->cave->objects = mem_zalloc((cave->obj_max + 1) * sizeof(struct object*));
1564 player->cave->obj_max = cave->obj_max;
1565 for (i = 0; i <= cave->obj_max; i++) {
1575 for (i = 0; i < player->cave->obj_max; i++)
H A Dobj-list.c167 for (i = 1; i < player->cave->obj_max; i++) { in object_list_collect()
H A Dsave.c876 wr_u16b(c->obj_max); in wr_objects_aux()
889 for (i = 1; i < c->obj_max; i++) { in wr_objects_aux()
H A Dcave.h205 u16b obj_max; member
H A Dgame-world.c243 for (i = 1; i < cave->obj_max; i++) { in recharge_objects()
H A Dobj-knowledge.c1172 for (i = 0; i < cave->obj_max; i++) in update_player_object_knowledge()
/dports/databases/redisjson/RedisJSON-2.0.6/cargo-crates/bson-0.14.1/tests/modules/
H A Dser.rs85 let obj_max: Bson = to_bson(&u8::MAX).unwrap(); in uint8_u2i() localVariable
86 let deser_max: u8 = from_bson(obj_max).unwrap(); in uint8_u2i()
104 let obj_max: Bson = to_bson(&u16::MAX).unwrap(); in uint16_u2i() localVariable
105 let deser_max: u16 = from_bson(obj_max).unwrap(); in uint16_u2i()
123 let obj_max: Bson = to_bson(&u32::MAX).unwrap(); in uint32_u2i() localVariable
124 let deser_max: u32 = from_bson(obj_max).unwrap(); in uint32_u2i()
142 let obj_max: EncoderResult<Bson> = to_bson(&u64::MAX); in uint64_u2i() localVariable
144 obj_max, in uint64_u2i()
/dports/math/py-optuna/optuna-2.10.0/optuna/visualization/matplotlib/
H A D_parallel_coordinate.py134 obj_max = max(obj_org)
135 obj_w = obj_max - obj_min
194 ax.set_ylim(obj_min, obj_max)
/dports/math/jacop/jacop-4.8.0/src/test/fz/upTo30sec/road-cons/dznFolder/
H A Droad_naive.mzn48 int: obj_max = sum(x, y in N where x < y)( ub(sp[x, y, n]) );
49 var obj_min..obj_max: objective;
/dports/math/symphony/SYMPHONY-releases-5.6.17/SYMPHONY/src/Master/
H A Dmaster_prep_sr.c50 if((*sr)->obj_max){ in sr_initialize()
67 (*sr)->obj_max = (double *)malloc(DSIZE*n); in sr_allocate()
284 if(!sr->obj_max && rows[obj_ind].bound_type != OPEN_ROW){ in prep_solve_sr_rlx()
309 if(!d_sr->obj_max){ in prep_solve_sr_rlx()
571 sr->obj_max[col_loc]; in sr_find_opt_bounded()
575 var_frac_val = sr->obj_max[col_loc] * in sr_find_opt_bounded()
781 obj = sr->obj_max; in sr_add_new_bounded_col()
1159 FREE(sr->obj_max); in free_sr_desc()
/dports/math/jacop/jacop-4.8.0/src/test/fz/above10min/cargo/dznFolder/
H A Dcargo_coarsePiles.mzn96 int: obj_max = sum(v in 5..nV-5)(ub(tReady[v]) - eta[v] - dRtotal[v]);
97 var obj_min..obj_max: objective;
/dports/devel/libslang2/slang-2.3.2/src/
H A Dsllist.c281 SLang_Object_Type *obj, *obj_max, *new_obj, *new_obj_max; in make_sublist() local
306 obj_max = c->elements + c->num_elements; in make_sublist()
315 while (obj == obj_max) in make_sublist()
319 obj_max = obj + c->num_elements; in make_sublist()
/dports/math/py-or-tools/or-tools-9.2/ortools/constraint_solver/
H A Dassignment.cc549 const int64_t obj_max = objective.max(); in Load() local
550 SetObjectiveRange(obj_min, obj_max); in Load()
608 const int64_t obj_max = ObjectiveMax(); in Save() local
610 objective->set_max(obj_max); in Save()
H A Dlocal_search.cc2536 int64_t obj_min, int64_t obj_max) override {
2554 int64_t obj_min, int64_t obj_max) override {
/dports/math/py-statsmodels/statsmodels-0.13.1/statsmodels/stats/
H A Dcorrelation_tools.py286 obj_max = max(obj_hist[-M:])
294 if obval <= obj_max + gam*alpha*gtd:
/dports/math/symphony/SYMPHONY-releases-5.6.17/SYMPHONY/include/
H A Dsym_prep.h131 double *obj_max; member
/dports/games/supertuxkart/SuperTuxKart-1.2-src/src/karts/
H A Dkart_model.cpp670 Vec3 obj_min, obj_max; in loadModels() local
672 MeshTools::minMax3D(mesh, &obj_min, &obj_max); in loadModels()
675 obj.m_location.transformVect(transformed_max, obj_max.toIrrVector()); in loadModels()