Home
last modified time | relevance | path

Searched refs:newBox (Results 1 – 25 of 113) sorted by relevance

12345

/dports/math/jacop/jacop-4.8.0/src/main/java/org/jacop/constraints/geost/
H A DDBox.java366 DBox diff = newBox(dimension); in subtract()
374 DBox dummyBox = newBox(dimension); in subtract()
396 DBox newBox = newBox(dimension); in subtract() local
397 int[] sliceOrigin = newBox.origin; in subtract()
398 int[] sliceLength = newBox.length; in subtract()
407 assert (newBox.checkInvariants() == null) : newBox.checkInvariants(); in subtract()
410 difference.add(newBox); in subtract()
419 DBox newBox = newBox(dimension); in subtract() local
420 int[] sliceOrigin = newBox.origin; in subtract()
430 assert (newBox.checkInvariants() == null) : newBox.checkInvariants(); in subtract()
[all …]
/dports/www/beehive/beehive-0.4.0/vendor/github.com/wcharczuk/go-chart/
H A Dbox.go223 newBox := b.Clone()
225 newBox.Top = util.Math.MaxInt(newBox.Top, other.Top)
226 newBox.Left = util.Math.MaxInt(newBox.Left, other.Left)
227 newBox.Right = util.Math.MinInt(newBox.Right, other.Right)
228 newBox.Bottom = util.Math.MinInt(newBox.Bottom, other.Bottom)
230 return newBox
236 newBox := b.Clone()
239 newBox.Top = b.Top + delta
244 newBox.Left = b.Left + delta
249 newBox.Right = b.Right - delta
[all …]
/dports/x11-toolkits/qml-box2d/qml-box2d-21e57f/examples/friction/
H A Dmain.qml132 var newBox = boxComponent.createObject(screen);
133 newBox.x = screen.width / 2 - 10;
134 newBox.y = screen.height / 2 - 10;
138 newBox.border.color = "red";
141 joint.bodyB = newBox.body;
143 newBox.body.applyLinearImpulse(Qt.point(x,y), Qt.point(10,10));
/dports/graphics/ampasCTL/CTL-57b48a2/lib/IlmCtlMath/
H A DCtlPointTree.h427 Imath::Box3f newBox(box); in intersect()
428 newBox.max[dimension] = node->_midValue; in intersect()
429 size_t nextDimension = newBox.majorAxis(); in intersect()
430 Imath::Box3f tNewBox(newBox); in intersect()
437 newBox, in intersect()
447 Imath::Box3f newBox(box); in intersect()
448 newBox.min[dimension] = node->_midValue; in intersect()
449 size_t nextDimension = newBox.majorAxis(); in intersect()
450 Imath::Box3f tNewBox(newBox); in intersect()
457 newBox, in intersect()
/dports/graphics/photoflow/PhotoFlow-8472024f/src/external/exiv2/src/
H A Djp2image.cpp623 Jp2BoxHeader newBox = subBox; in encodeJp2Header() local
632 newBox.type = subBox.type; in encodeJp2Header()
635 newBox.type = kJp2BoxTypeColorHeader; in encodeJp2Header()
640 if ( newBox.type == kJp2BoxTypeColorHeader ) { in encodeJp2Header()
645 ul2Data((byte*)&newBox.length,psize ,bigEndian); in encodeJp2Header()
646 ul2Data((byte*)&newBox.type ,newBox.type,bigEndian); in encodeJp2Header()
647 … ::memcpy(output.pData_+outlen ,&newBox ,sizeof(newBox)); in encodeJp2Header()
648 … ::memcpy(output.pData_+outlen+sizeof(newBox) ,pad ,psize ); in encodeJp2Header()
653 ul2Data((byte*)&newBox.length,psize+iccProfile_.size_,bigEndian); in encodeJp2Header()
654 ul2Data((byte*)&newBox.type,newBox.type,bigEndian); in encodeJp2Header()
[all …]
/dports/graphics/exiv2/exiv2-0.27.5-Source/src/
H A Djp2image.cpp677 Jp2BoxHeader newBox = subBox; in encodeJp2Header() local
688 newBox.type = subBox.type; in encodeJp2Header()
691 newBox.type = kJp2BoxTypeColorHeader; in encodeJp2Header()
696 if ( newBox.type == kJp2BoxTypeColorHeader ) { in encodeJp2Header()
701 newlen = sizeof(newBox) + psize ; in encodeJp2Header()
703 ul2Data((byte*)&newBox.length,psize ,bigEndian); in encodeJp2Header()
704 ul2Data((byte*)&newBox.type ,newBox.type,bigEndian); in encodeJp2Header()
705 … ::memcpy(output.pData_+outlen ,&newBox ,sizeof(newBox)); in encodeJp2Header()
712 ul2Data((byte*)&newBox.length,newlen,bigEndian); in encodeJp2Header()
713 ul2Data((byte*)&newBox.type,newBox.type,bigEndian); in encodeJp2Header()
[all …]
/dports/misc/jbidwatcher/jbidwatcher-2.5.6/src/com/jbidwatcher/ui/
H A DSearchInfoDialog.java151 JPanel newBox = new JPanel(); in boxUp() local
152 newBox.setLayout(new BoxLayout(newBox, BoxLayout.X_AXIS)); in boxUp()
153 newBox.add(a); in boxUp()
154 newBox.add(b); in boxUp()
156 return newBox; in boxUp()
/dports/multimedia/gpac-mp4box/gpac-1.0.0/src/isomedia/
H A Dbox_funcs.c100 GF_Box *newBox; in gf_isom_box_parse_ex() local
214 if (!newBox) return GF_OUT_OF_MEM; in gf_isom_box_parse_ex()
241 if (!newBox->type) newBox->type = type; in gf_isom_box_parse_ex()
243 newBox->type = restore_type; in gf_isom_box_parse_ex()
252 *outBox = newBox; in gf_isom_box_parse_ex()
256 newBox->size = size - hdr_size; in gf_isom_box_parse_ex()
260 newBox->size = size; in gf_isom_box_parse_ex()
267 gf_isom_box_del(newBox); in gf_isom_box_parse_ex()
294 gf_isom_box_del(newBox); in gf_isom_box_parse_ex()
301 newBox->size = size; in gf_isom_box_parse_ex()
[all …]
/dports/multimedia/gpac-libgpac/gpac-1.0.0/src/isomedia/
H A Dbox_funcs.c100 GF_Box *newBox; in gf_isom_box_parse_ex() local
214 if (!newBox) return GF_OUT_OF_MEM; in gf_isom_box_parse_ex()
241 if (!newBox->type) newBox->type = type; in gf_isom_box_parse_ex()
243 newBox->type = restore_type; in gf_isom_box_parse_ex()
252 *outBox = newBox; in gf_isom_box_parse_ex()
256 newBox->size = size - hdr_size; in gf_isom_box_parse_ex()
260 newBox->size = size; in gf_isom_box_parse_ex()
267 gf_isom_box_del(newBox); in gf_isom_box_parse_ex()
294 gf_isom_box_del(newBox); in gf_isom_box_parse_ex()
301 newBox->size = size; in gf_isom_box_parse_ex()
[all …]
/dports/graphics/freeimage/FreeImage/Source/OpenEXR/Imath/
H A DImathBoxAlgo.h191 Box< Vec3<S> > newBox; in transform() local
195 newBox.min[i] = newBox.max[i] = (S) m[3][i]; in transform()
206 newBox.min[i] += a; in transform()
217 return newBox; in transform()
242 return newBox; in transform()
352 newBox.min[i] = newBox.max[i] = (S) m[3][i]; in affineTransform()
363 newBox.min[i] += a; in affineTransform()
364 newBox.max[i] += b; in affineTransform()
368 newBox.min[i] += b; in affineTransform()
369 newBox.max[i] += a; in affineTransform()
[all …]
/dports/math/Imath/Imath-3.1.4/src/Imath/
H A DImathBoxAlgo.h126 Box<Vec3<S>> newBox; in transform() local
130 newBox.min[i] = newBox.max[i] = (S) m[3][i]; in transform()
152 return newBox; in transform()
172 Box<Vec3<S>> newBox; in transform() local
177 return newBox; in transform()
275 Box<Vec3<S>> newBox; in affineTransform() local
279 newBox.min[i] = newBox.max[i] = (S) m[3][i]; in affineTransform()
290 newBox.min[i] += a; in affineTransform()
291 newBox.max[i] += b; in affineTransform()
295 newBox.min[i] += b; in affineTransform()
[all …]
/dports/graphics/povray37/povray-3.7.0.10/libraries/ilmbase/Imath/
H A DImathBoxAlgo.h191 Box< Vec3<S> > newBox; in transform() local
195 newBox.min[i] = newBox.max[i] = (S) m[3][i]; in transform()
206 newBox.min[i] += a; in transform()
217 return newBox; in transform()
242 return newBox; in transform()
352 newBox.min[i] = newBox.max[i] = (S) m[3][i]; in affineTransform()
363 newBox.min[i] += a; in affineTransform()
364 newBox.max[i] += b; in affineTransform()
368 newBox.min[i] += b; in affineTransform()
369 newBox.max[i] += a; in affineTransform()
[all …]
/dports/graphics/opencv/opencv-4.5.3/3rdparty/openexr/Imath/
H A DImathBoxAlgo.h191 Box< Vec3<S> > newBox; in transform() local
195 newBox.min[i] = newBox.max[i] = (S) m[3][i]; in transform()
206 newBox.min[i] += a; in transform()
217 return newBox; in transform()
242 return newBox; in transform()
352 newBox.min[i] = newBox.max[i] = (S) m[3][i]; in affineTransform()
363 newBox.min[i] += a; in affineTransform()
364 newBox.max[i] += b; in affineTransform()
368 newBox.min[i] += b; in affineTransform()
369 newBox.max[i] += a; in affineTransform()
[all …]
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/clang/test/Analysis/inlining/
H A Dfalse-positive-suppression.cpp58 int *&newBox = getNewBox(); in getValue() local
59 newBox = 0; in getValue()
60 return newBox; in getValue()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/clang/test/Analysis/inlining/
H A Dfalse-positive-suppression.cpp58 int *&newBox = getNewBox(); in getValue() local
59 newBox = 0; in getValue()
60 return newBox; in getValue()
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/clang/test/Analysis/inlining/
H A Dfalse-positive-suppression.cpp58 int *&newBox = getNewBox(); in getValue() local
59 newBox = 0; in getValue()
60 return newBox; in getValue()
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/clang/test/Analysis/inlining/
H A Dfalse-positive-suppression.cpp58 int *&newBox = getNewBox(); in getValue() local
59 newBox = 0; in getValue()
60 return newBox; in getValue()
/dports/devel/llvm12/llvm-project-12.0.1.src/clang/test/Analysis/inlining/
H A Dfalse-positive-suppression.cpp58 int *&newBox = getNewBox(); in getValue() local
59 newBox = 0; in getValue()
60 return newBox; in getValue()
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/clang/test/Analysis/inlining/
H A Dfalse-positive-suppression.cpp58 int *&newBox = getNewBox(); in getValue() local
59 newBox = 0; in getValue()
60 return newBox; in getValue()
/dports/devel/llvm90/llvm-9.0.1.src/tools/clang/test/Analysis/inlining/
H A Dfalse-positive-suppression.cpp58 int *&newBox = getNewBox(); in getValue() local
59 newBox = 0; in getValue()
60 return newBox; in getValue()
/dports/devel/llvm10/llvm-10.0.1.src/tools/clang/test/Analysis/inlining/
H A Dfalse-positive-suppression.cpp58 int *&newBox = getNewBox(); in getValue() local
59 newBox = 0; in getValue()
60 return newBox; in getValue()
/dports/devel/llvm11/llvm-11.0.1.src/tools/clang/test/Analysis/inlining/
H A Dfalse-positive-suppression.cpp58 int *&newBox = getNewBox(); in getValue() local
59 newBox = 0; in getValue()
60 return newBox; in getValue()
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/clang/test/Analysis/inlining/
H A Dfalse-positive-suppression.cpp58 int *&newBox = getNewBox(); in getValue() local
59 newBox = 0; in getValue()
60 return newBox; in getValue()
/dports/lang/rust/rustc-1.58.1-src/src/llvm-project/clang/test/Analysis/inlining/
H A Dfalse-positive-suppression.cpp58 int *&newBox = getNewBox(); in getValue() local
59 newBox = 0; in getValue()
60 return newBox; in getValue()
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/clang/test/Analysis/inlining/
H A Dfalse-positive-suppression.cpp58 int *&newBox = getNewBox(); in getValue() local
59 newBox = 0; in getValue()
60 return newBox; in getValue()

12345