Home
last modified time | relevance | path

Searched refs:bobj (Results 1 – 25 of 153) sorted by relevance

1234567

/dports/converters/p5-Storable-AMF/Storable-AMF-1.00/examples/
H A Dbench_storage_freeze.pl29 my $bobj = [ map dclone( $obj ), 1..10 ];
30 $bobj = [ map [], 1..50 ];
41 my $ff_bobj = freeze0( $bobj );
45 my $ff_bobj3 = freeze3( $bobj );
51 $s = freeze0( $bobj, $shared);
52 $s = freeze0( $bobj, $shared);
53 $s = freeze0( $bobj, $shared);
54 $s = freeze0( $bobj, $shared);
55 $s = freeze0( $bobj, $shared);
56 $s = freeze0( $bobj, $shared);
[all …]
H A Dbench_storage_thaw.pl27 my $bobj = [ map dclone( $obj ), 1..10 ];
36 my $ff_bobj = freeze0( $bobj );
40 my $ff_bobj3 = freeze3( $bobj );
/dports/math/symphony/SYMPHONY-releases-5.6.17/SYMPHONY/src/Master/
H A Dmaster_func.c316 bobj = &path[i]->bobj; in resolve_node()
1221 n_to->bobj = n_from->bobj; in copy_node()
1266 memcpy(n_to->bobj.sense, n_from->bobj.sense, in copy_node()
1268 memcpy(n_to->bobj.rhs, n_from->bobj.rhs, in copy_node()
1270 memcpy(n_to->bobj.range, n_from->bobj.range, in copy_node()
1272 memcpy(n_to->bobj.branch, n_from->bobj.branch, in copy_node()
1277 memcpy(n_to->bobj.objval, n_from->bobj.objval, in copy_node()
1281 memcpy(n_to->bobj.iterd, n_from->bobj.iterd, in copy_node()
1464 node->bobj.name, node->bobj.child_num); in write_node()
1634 &node->bobj.rhs[i], &node->bobj.range[i], in read_node()
[all …]
/dports/math/gretl/gretl-2021d/addons/SVAR/
H A DSVAR_boot.inp310 if bobj.biascorr && (bobj.type != 4) # not available w/unit roots # BIASCORR
312 matrix start = bobj.Y[1: bobj.p, ]
316 matrix bobj.ABCorA = bobj.VARpar
451 delete bobj.C
459 bobj.step = 0
465 matrix bobj.Y = varsimul(bobj.ABCorA, U, obj.Y[1: obj.p, ] )
530 bobj.fullRd = get_full_Rd(&bobj, 0) # update fullRd
572 bobj.C1 : C1mat(bobj.VARpar)
573 matrix bobj.lrmat = C1 * bobj.C
583 Spar_mat[i,] = vec(bobj.S1)' ~ vec(bobj.S2)'
[all …]
/dports/math/symphony/SYMPHONY-releases-5.6.17/SYMPHONY/src/TreeManager/
H A Dtm_func.c1812 branch_obj *bobj = &node->parent->bobj; local
1934 bobj->sense[i] = bobj->sense[new_child_num];
1935 bobj->rhs[i] = bobj->rhs[new_child_num];
1936 bobj->range[i] = bobj->range[new_child_num];
1945 bobj->iterd[i] = bobj->iterd[new_child_num];
1981 branch_obj *bobj = &node->parent->bobj; local
3079 node->bobj.name, node->bobj.child_num);
3082 node->bobj.sense[i], node->bobj.rhs[i],
3083 node->bobj.range[i], node->bobj.branch[i]);
3160 &node->bobj.name, &node->bobj.child_num);
[all …]
H A Dtm_proccomm.c412 bobj = &path[i]->bobj; in send_active_node()
910 branch_obj *bobj = &node->bobj; in process_branching_info() local
935 bobj->sense = malloc(bobj->child_num * CSIZE); in process_branching_info()
936 bobj->rhs = (double *) malloc(bobj->child_num * DSIZE); in process_branching_info()
937 bobj->range = (double *) malloc(bobj->child_num * DSIZE); in process_branching_info()
938 bobj->branch = (int *) malloc(bobj->child_num * ISIZE); in process_branching_info()
939 bobj->sos_cnt = (int *) malloc(bobj->child_num * ISIZE); in process_branching_info()
942 receive_char_array(bobj->sense, bobj->child_num); in process_branching_info()
943 receive_dbl_array(bobj->rhs, bobj->child_num); in process_branching_info()
944 receive_dbl_array(bobj->range, bobj->child_num); in process_branching_info()
[all …]
/dports/math/vampire/vampire-4.5.1/Lib/
H A DBacktrackable.hpp191 BacktrackObject* bobj=_boList; in toString() local
192 while(bobj) { in toString()
193 res+=bobj->toString()+"\n"; in toString()
195 bobj=bobj->_next; in toString()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.pde.ui/ui/org.eclipse.pde.ui/src/org/eclipse/pde/internal/ui/editor/build/
H A DBuildUndoManager.java97 BuildObject bobj = (BuildObject) element; in executeChange() local
99 bobj.restoreProperty(propertyName, oldValue, newValue); in executeChange()
111 IBuildObject bobj = (IBuildObject) event.getChangedObjects()[0]; in modelChanged() local
113 if (!(bobj instanceof IBuild) && bobj.isInTheModel() == false) in modelChanged()
/dports/science/silo/silo-4.10.2-bsd/tests/
H A Djson.c175 struct json_object *bobj; in main() local
183 bobj = json_object_from_binary_buf(buf, len); in main()
184 printf("bojb =%s\n", json_object_to_json_string(bobj)); in main()
186 DBWriteJsonObject(dbfile, bobj); in main()
187 json_object_put(bobj); in main()
/dports/japanese/p5-PDFJ/ja-p5-PDFJ-0.90_3/PDFJ/
H A DMatrix.pm408 my $bobj;
409 %$bobj = %$self;
410 bless $bobj, ref($self);
411 $bobj->{objects} = [map {$bobjects[$_][0]} (0..$#bobjects)];
412 $bobj->{postnobreak} = [map {$bobjects[$_][2]} (0..$#bobjects)];
414 $bobj->{widths} = [map {$bobjects[$_][1]} (0..$#bobjects)];
415 $bobj->_widths2width;
417 $bobj->{heights} = [map {$bobjects[$_][1]} (0..$#bobjects)];
418 $bobj->_heights2height;
420 push @result, $bobj;
/dports/lang/fpc-source/fpc-3.2.2/tests/test/cg/
H A Dtraise3.pp52 bobj: TBobject;
56 bobj := TBobject.create(i);
57 raise bobj;
H A Dtloadvmt.pp54 bobj: TBobject;
60 bobj:=TBobject.create(i);
61 if bobj.getstring <> RESULT_STRING then
/dports/math/symphony/SYMPHONY-releases-5.6.17/SYMPHONY/src/LP/
H A Dlp_proccomm.c1462 branch_obj *bobj = &node->bobj; local
1465 node->bobj = *can;
1500 node->bobj.sense = malloc(node->bobj.child_num);
1501 node->bobj.rhs = (double *) malloc(node->bobj.child_num * DSIZE);
1502 node->bobj.range = (double *) malloc(node->bobj.child_num * DSIZE);
1503 node->bobj.branch = (int *) malloc(node->bobj.child_num * ISIZE);
1504 memcpy(node->bobj.sense, bobj->sense, bobj->child_num);
1505 memcpy((char *)node->bobj.rhs, (char *)bobj->rhs, bobj->child_num*DSIZE);
1506 memcpy((char *)node->bobj.range, (char *)bobj->range, bobj->child_num*DSIZE);
1507 memcpy((char *)node->bobj.branch, (char *)bobj->branch, bobj->child_num*ISIZE);
[all …]
H A Dlp_wrapper.c193 branch_desc *bobj; in create_subproblem_u() local
635 bobj = p->bdesc + i; in create_subproblem_u()
639 -bobj->name-1 : in create_subproblem_u()
642 switch (bobj->sense){ in create_subproblem_u()
644 change_lbub(lp_data, j, bobj->rhs, bobj->rhs); in create_subproblem_u()
659 change_lbub(lp_data, j, bobj->rhs, bobj->rhs + bobj->range); in create_subproblem_u()
662 vars[j]->ub = bobj->rhs + bobj->range; in create_subproblem_u()
663 vars[j]->new_ub = bobj->rhs + bobj->range; in create_subproblem_u()
675 -bobj->name-1 : in create_subproblem_u()
677 change_row(lp_data, j, bobj->sense, bobj->rhs, bobj->range); in create_subproblem_u()
[all …]
/dports/devel/gdb/gdb-11.1/gdb/testsuite/gdb.base/
H A Dcondbreak-multi-context.cc45 Base bobj; in main() local
50 bobj.func (); in main()
/dports/net-mgmt/aircrack-ng/aircrack-ng-1.5.2/lib/csharp/MonoExample/NDesk-dbus/
H A DMessageWriter.cs311 BusObject bobj = val as BusObject; in WriteObject()
313 if (bobj == null && val is MarshalByRefObject) { in WriteObject()
314 bobj = ((MarshalByRefObject)val).GetLifetimeService () as BusObject; in WriteObject()
317 if (bobj == null) in WriteObject()
320 path = bobj.Path; in WriteObject()
/dports/devel/ndesk-dbus/ndesk-dbus-0.6.1a/src/
H A DMessageWriter.cs311 BusObject bobj = val as BusObject; in WriteObject()
313 if (bobj == null && val is MarshalByRefObject) { in WriteObject()
314 bobj = ((MarshalByRefObject)val).GetLifetimeService () as BusObject; in WriteObject()
317 if (bobj == null) in WriteObject()
320 path = bobj.Path; in WriteObject()
/dports/math/R-cran-spdep/spdep/R/
H A Dsoi.R59 bobj <- st_buffer(obj, dist=dists_1, nQuadSegs=quadsegs) functionVar
60 gI <- st_intersects(bobj)
/dports/devel/dbus-sharp/dbus-sharp-0.8.1/src/Protocol/
H A DMessageWriter.cs310 BusObject bobj = val as BusObject; in WriteObject()
312 if (bobj == null && val is MarshalByRefObject) { in WriteObject()
313 bobj = ((MarshalByRefObject)val).GetLifetimeService () as BusObject; in WriteObject()
316 if (bobj == null) in WriteObject()
319 path = bobj.Path; in WriteObject()
/dports/x11-wm/qtile/qtile-0.18.1/test/
H A Dtest_images.py29 bobj = fobj.read()
30 return fpath, bobj
40 bobj = fobj.read()
41 return fpath, bobj
/dports/x11-toolkits/wxgtk31/wxWidgets-3.1.5/src/motif/
H A Dclipbrd.cpp104 wxBitmapDataObject* bobj = NULL; in wxGetClipboardData() local
112 dobj = bobj = new wxBitmapDataObject; in wxGetClipboardData()
126 else if( bobj ) in wxGetClipboardData()
129 return new wxBitmap( bobj->GetBitmap() ); in wxGetClipboardData()
/dports/x11-toolkits/wxgtk30/wxWidgets-3.0.5.1/src/motif/
H A Dclipbrd.cpp104 wxBitmapDataObject* bobj = NULL; in wxGetClipboardData() local
112 dobj = bobj = new wxBitmapDataObject; in wxGetClipboardData()
126 else if( bobj ) in wxGetClipboardData()
129 return new wxBitmap( bobj->GetBitmap() ); in wxGetClipboardData()
/dports/x11-toolkits/py-wxPython40/wxPython-4.0.7/ext/wxWidgets/src/motif/
H A Dclipbrd.cpp104 wxBitmapDataObject* bobj = NULL; in wxGetClipboardData() local
112 dobj = bobj = new wxBitmapDataObject; in wxGetClipboardData()
126 else if( bobj ) in wxGetClipboardData()
129 return new wxBitmap( bobj->GetBitmap() ); in wxGetClipboardData()
/dports/cad/gmsh/gmsh-4.9.2-source/contrib/blossom/concorde97/TSP/
H A Dbranch.c135 CCtsp_branchobj **bobj,
263 CCtsp_branchobj **bobj;
279 *bobj = (CCtsp_branchobj *) NULL;
333 *bobj = b;
359 CCtsp_branchobj **bobj;
374 *bobj = (CCtsp_branchobj *) NULL;
405 *bobj = CC_SAFE_MALLOC (k, CCtsp_branchobj);
406 if (!(*bobj)) {
413 b = &((*bobj)[k]);
430 if ((*bobj)[i].clique) {
[all …]
/dports/devel/py-mypy/mypy-0.910/mypyc/lib-rt/
H A Dint_ops.c297 PyObject *bobj = CPyTagged_AsObject(b); in GenericBitwiseOp() local
300 r = PyNumber_And(aobj, bobj); in GenericBitwiseOp()
302 r = PyNumber_Or(aobj, bobj); in GenericBitwiseOp()
304 r = PyNumber_Xor(aobj, bobj); in GenericBitwiseOp()
310 Py_DECREF(bobj); in GenericBitwiseOp()

1234567