Home
last modified time | relevance | path

Searched refs:oth (Results 1 – 25 of 1427) sorted by relevance

12345678910>>...58

/dports/textproc/libmwaw03/libmwaw-0.3.20/src/lib/
H A DMWAWFont.hxx73 return cmp(oth)==0; in operator ==()
78 return cmp(oth)!=0; in operator !=()
83 if (m_style != oth.m_style) return int(m_style)-int(oth.m_style); in cmp()
84 if (m_type != oth.m_type) return int(m_type)-int(oth.m_type); in cmp()
145 return cmp(oth)==0; in operator ==()
150 return cmp(oth)!=0; in operator !=()
155 return cmp(oth)<0; in operator <()
160 return cmp(oth)<=0; in operator <=()
165 return cmp(oth)>0; in operator >()
170 return cmp(oth)>=0; in operator >=()
[all …]
/dports/games/openlierox/OpenLieroX/include/
H A DCache.h70 CacheItem_t(const CacheItem_t& oth) { operator=(oth); } in CacheItem_t() argument
73 …heItem_t& operator=(const CacheItem_t& oth) { if (&oth != this) { fSaveTime = oth.fSaveTime; iFil…
80 ImageItem_t(const ImageItem_t& oth) { operator=(oth); } in ImageItem_t() argument
82 …mageItem_t& operator=(const ImageItem_t& oth) { CacheItem_t::operator =(oth); if (&oth != this) { …
88 SoundItem_t(const SoundItem_t& oth) { operator=(oth); } in SoundItem_t() argument
90 …undItem_t& operator=(const SoundItem_t& oth) { CacheItem_t::operator =(oth); if (&oth != this) { s…
96 MapItem_t(const MapItem_t& oth) { operator=(oth); } in MapItem_t() argument
98 …MapItem_t& operator=(const MapItem_t& oth) { CacheItem_t::operator =(oth); if (&oth != this) { tMa…
104 ModItem_t(const ModItem_t& oth) { operator=(oth); } in ModItem_t() argument
106 …ModItem_t& operator=(const ModItem_t& oth) { CacheItem_t::operator =(oth); if (&oth != this) { tMo…
/dports/games/zdoom/zdoom-2.8.1/tools/re2c/
H A Ddfa.h40 : state(oth.state) in Action()
45 state = oth.state;
120 : Action(oth) in Accept()
148 : Action(oth) in Rule()
149 , rule(oth.rule) in Rule()
231 , rule(oth.rule) in State()
232 , next(oth.next) in State()
233 , link(oth.link) in State()
238 , go(oth.go) in State()
279 , head(oth.head) in DFA()
[all …]
H A Dre.h215 : RegExp(oth) in MatchOp()
267 : RegExp(oth) in RuleOp()
268 , exp(oth.exp) in RuleOp()
269 , ctx(oth.ctx) in RuleOp()
270 , ins(oth.ins) in RuleOp()
338 : RegExp(oth) in AltOp()
384 : RegExp(oth) in CatOp()
428 : RegExp(oth) in CloseOp()
429 , exp(oth.exp) in CloseOp()
474 : RegExp(oth) in CloseVOp()
[all …]
/dports/lang/racket/racket-8.3/src/rktio/
H A Drktio_fd.c731 if (rfd->oth) { in poll_write_ready_or_flushed()
734 Win_FD_Output_Thread *oth = rfd->oth; in poll_write_ready_or_flushed() local
1503 if (!rfd->oth || rfd->oth->nonblocking) { in rktio_write()
1631 rfd->oth = oth; in rktio_write()
1671 if (rfd->oth && !rfd->oth->nonblocking) { in rktio_write()
1685 Win_FD_Output_Thread *oth = rfd->oth; in rktio_write() local
1700 memcpy(oth->buffer + oth->buflen, buffer, winwrote); in rktio_write()
1961 memmove(oth->buffer, oth->buffer + wrote, oth->buflen); in WindowsFDWriter()
1964 if ((oth->buflen < RKTIO_FD_BUFFSIZE) || oth->err_no) in WindowsFDWriter()
1972 WindowsFDOCleanup(oth, oth->you_clean_up); in WindowsFDWriter()
[all …]
/dports/lang/racket-minimal/racket-8.3/src/rktio/
H A Drktio_fd.c731 if (rfd->oth) { in poll_write_ready_or_flushed()
734 Win_FD_Output_Thread *oth = rfd->oth; in poll_write_ready_or_flushed() local
1503 if (!rfd->oth || rfd->oth->nonblocking) { in rktio_write()
1631 rfd->oth = oth; in rktio_write()
1671 if (rfd->oth && !rfd->oth->nonblocking) { in rktio_write()
1685 Win_FD_Output_Thread *oth = rfd->oth; in rktio_write() local
1700 memcpy(oth->buffer + oth->buflen, buffer, winwrote); in rktio_write()
1961 memmove(oth->buffer, oth->buffer + wrote, oth->buflen); in WindowsFDWriter()
1964 if ((oth->buflen < RKTIO_FD_BUFFSIZE) || oth->err_no) in WindowsFDWriter()
1972 WindowsFDOCleanup(oth, oth->you_clean_up); in WindowsFDWriter()
[all …]
/dports/lang/ruby26/ruby-2.6.9/lib/uri/
H A Dgeneric.rb300 def replace!(oth) argument
1071 def merge!(oth) argument
1099 def merge(oth) argument
1185 oth = parser.send(:convert_to_uri, oth)
1255 oth, rel = route_from0(oth)
1259 if oth == rel
1373 def ==(oth) argument
1385 def eql?(oth) argument
1463 def coerce(oth) argument
1464 case oth
[all …]
/dports/www/firefox/firefox-99.0/third_party/jpeg-xl/lib/jxl/
H A Ddec_patch_dictionary.h81 bool operator<(const PatchReferencePosition& oth) const {
83 std::make_tuple(oth.ref, oth.x0, oth.y0, oth.xsize, oth.ysize);
85 bool operator==(const PatchReferencePosition& oth) const {
86 return !(*this < oth) && !(oth < *this);
96 bool operator<(const PatchPosition& oth) const {
98 std::make_tuple(oth.ref_pos, oth.x, oth.y);
/dports/math/py-sympy/sympy-1.9/sympy/polys/agca/
H A Dhomomorphisms.py285 def _compose(self, oth): argument
299 def _add(self, oth): argument
310 return oth.domain == self.domain and oth.codomain == self.codomain
312 def __mul__(self, oth): argument
313 if isinstance(oth, ModuleHomomorphism) and self.domain == oth.codomain:
329 def __add__(self, oth): argument
334 def __sub__(self, oth): argument
434 def __eq__(self, oth): argument
440 def __ne__(self, oth): argument
526 def _add(self, oth): argument
[all …]
/dports/misc/elki/elki-release0.7.1-1166-gfb1fffdf3/elki-core-math/src/main/java/de/lmu/ifi/dbs/elki/math/geometry/
H A DSweepHullDelaunay2D.java511 opp = oth.c; in flipTriangle()
516 opp = oth.a; in flipTriangle()
521 opp = oth.b; in flipTriangle()
559 opp = oth.c; in flipTriangle()
564 opp = oth.a; in flipTriangle()
569 opp = oth.b; in flipTriangle()
607 opp = oth.c; in flipTriangle()
612 opp = oth.a; in flipTriangle()
852 if(this.b == oth.b && this.c == oth.a) { in findOrientation()
855 if(this.b == oth.c && this.c == oth.b) { in findOrientation()
[all …]
/dports/graphics/ogre3d19/sinbad-ogre-dd30349ea667/OgreMain/src/
H A DOgrePass.cpp235 *this = oth; in Pass()
260 mName = oth.mName; in operator =()
261 mHash = oth.mHash; in operator =()
262 mAmbient = oth.mAmbient; in operator =()
264 mSpecular = oth.mSpecular; in operator =()
274 mFogEnd = oth.mFogEnd; in operator =()
300 mCullMode = oth.mCullMode; in operator =()
314 mPointSize = oth.mPointSize; in operator =()
325 mLightMask = oth.mLightMask; in operator =()
328 if (oth.mVertexProgramUsage) in operator =()
[all …]
/dports/multimedia/libv4l/linux-5.13-rc2/net/ipv4/netfilter/
H A Dnf_reject_ipv4.c44 const struct tcphdr *oth; in nf_reject_skb_v4_tcp_reset() local
53 if (!oth) in nf_reject_skb_v4_tcp_reset()
140 const struct tcphdr *oth; in nf_reject_ip_tcphdr_get() local
151 if (oth == NULL) in nf_reject_ip_tcphdr_get()
155 if (oth->rst) in nf_reject_ip_tcphdr_get()
162 return oth; in nf_reject_ip_tcphdr_get()
199 tcph->source = oth->dest; in nf_reject_ip_tcphdr_put()
200 tcph->dest = oth->source; in nf_reject_ip_tcphdr_put()
203 if (oth->ack) { in nf_reject_ip_tcphdr_put()
206 tcph->ack_seq = htonl(ntohl(oth->seq) + oth->syn + oth->fin + in nf_reject_ip_tcphdr_put()
[all …]
/dports/multimedia/v4l_compat/linux-5.13-rc2/net/ipv4/netfilter/
H A Dnf_reject_ipv4.c44 const struct tcphdr *oth; in nf_reject_skb_v4_tcp_reset() local
53 if (!oth) in nf_reject_skb_v4_tcp_reset()
140 const struct tcphdr *oth; in nf_reject_ip_tcphdr_get() local
151 if (oth == NULL) in nf_reject_ip_tcphdr_get()
155 if (oth->rst) in nf_reject_ip_tcphdr_get()
162 return oth; in nf_reject_ip_tcphdr_get()
199 tcph->source = oth->dest; in nf_reject_ip_tcphdr_put()
200 tcph->dest = oth->source; in nf_reject_ip_tcphdr_put()
203 if (oth->ack) { in nf_reject_ip_tcphdr_put()
206 tcph->ack_seq = htonl(ntohl(oth->seq) + oth->syn + oth->fin + in nf_reject_ip_tcphdr_put()
[all …]
/dports/multimedia/v4l-utils/linux-5.13-rc2/net/ipv4/netfilter/
H A Dnf_reject_ipv4.c44 const struct tcphdr *oth; in nf_reject_skb_v4_tcp_reset() local
53 if (!oth) in nf_reject_skb_v4_tcp_reset()
140 const struct tcphdr *oth; in nf_reject_ip_tcphdr_get() local
151 if (oth == NULL) in nf_reject_ip_tcphdr_get()
155 if (oth->rst) in nf_reject_ip_tcphdr_get()
162 return oth; in nf_reject_ip_tcphdr_get()
199 tcph->source = oth->dest; in nf_reject_ip_tcphdr_put()
200 tcph->dest = oth->source; in nf_reject_ip_tcphdr_put()
203 if (oth->ack) { in nf_reject_ip_tcphdr_put()
206 tcph->ack_seq = htonl(ntohl(oth->seq) + oth->syn + oth->fin + in nf_reject_ip_tcphdr_put()
[all …]
/dports/graphics/libosmesa-gallium/mesa-21.3.6/src/gallium/drivers/r600/sfn/
H A Dsfn_instruction_export.cpp76 return (gpr() == oth.gpr()) && in is_equal_to()
77 (m_type == oth.m_type) && in is_equal_to()
78 (m_loc == oth.m_loc) && in is_equal_to()
79 (m_is_last == oth.m_is_last); in is_equal_to()
226 return gpr() == oth.gpr() && in is_equal_to()
229 m_array_base == oth.m_array_base && in is_equal_to()
231 m_writemask == oth.m_writemask && in is_equal_to()
233 m_stream == oth.m_stream; in is_equal_to()
283 bool equal = gpr() == oth.gpr() && in is_equal_to()
285 m_type == oth.m_type && in is_equal_to()
[all …]
/dports/lang/clover/mesa-21.3.6/src/gallium/drivers/r600/sfn/
H A Dsfn_instruction_export.cpp76 return (gpr() == oth.gpr()) && in is_equal_to()
77 (m_type == oth.m_type) && in is_equal_to()
78 (m_loc == oth.m_loc) && in is_equal_to()
79 (m_is_last == oth.m_is_last); in is_equal_to()
226 return gpr() == oth.gpr() && in is_equal_to()
229 m_array_base == oth.m_array_base && in is_equal_to()
231 m_writemask == oth.m_writemask && in is_equal_to()
233 m_stream == oth.m_stream; in is_equal_to()
283 bool equal = gpr() == oth.gpr() && in is_equal_to()
285 m_type == oth.m_type && in is_equal_to()
[all …]
/dports/graphics/libosmesa/mesa-21.3.6/src/gallium/drivers/r600/sfn/
H A Dsfn_instruction_export.cpp76 return (gpr() == oth.gpr()) && in is_equal_to()
77 (m_type == oth.m_type) && in is_equal_to()
78 (m_loc == oth.m_loc) && in is_equal_to()
79 (m_is_last == oth.m_is_last); in is_equal_to()
226 return gpr() == oth.gpr() && in is_equal_to()
229 m_array_base == oth.m_array_base && in is_equal_to()
231 m_writemask == oth.m_writemask && in is_equal_to()
233 m_stream == oth.m_stream; in is_equal_to()
283 bool equal = gpr() == oth.gpr() && in is_equal_to()
285 m_type == oth.m_type && in is_equal_to()
[all …]
/dports/graphics/mesa-libs/mesa-21.3.6/src/gallium/drivers/r600/sfn/
H A Dsfn_instruction_export.cpp76 return (gpr() == oth.gpr()) && in is_equal_to()
77 (m_type == oth.m_type) && in is_equal_to()
78 (m_loc == oth.m_loc) && in is_equal_to()
79 (m_is_last == oth.m_is_last); in is_equal_to()
226 return gpr() == oth.gpr() && in is_equal_to()
229 m_array_base == oth.m_array_base && in is_equal_to()
231 m_writemask == oth.m_writemask && in is_equal_to()
233 m_stream == oth.m_stream; in is_equal_to()
283 bool equal = gpr() == oth.gpr() && in is_equal_to()
285 m_type == oth.m_type && in is_equal_to()
[all …]
/dports/graphics/mesa-dri-classic/mesa-20.2.3/src/gallium/drivers/r600/sfn/
H A Dsfn_instruction_export.cpp76 return (gpr() == oth.gpr()) && in is_equal_to()
77 (m_type == oth.m_type) && in is_equal_to()
78 (m_loc == oth.m_loc) && in is_equal_to()
79 (m_is_last == oth.m_is_last); in is_equal_to()
226 return gpr() == oth.gpr() && in is_equal_to()
229 m_array_base == oth.m_array_base && in is_equal_to()
231 m_writemask == oth.m_writemask && in is_equal_to()
233 m_stream == oth.m_stream; in is_equal_to()
283 bool equal = gpr() == oth.gpr() && in is_equal_to()
285 m_type == oth.m_type && in is_equal_to()
[all …]
/dports/graphics/mesa-gallium-va/mesa-21.3.6/src/gallium/drivers/r600/sfn/
H A Dsfn_instruction_export.cpp76 return (gpr() == oth.gpr()) && in is_equal_to()
77 (m_type == oth.m_type) && in is_equal_to()
78 (m_loc == oth.m_loc) && in is_equal_to()
79 (m_is_last == oth.m_is_last); in is_equal_to()
226 return gpr() == oth.gpr() && in is_equal_to()
229 m_array_base == oth.m_array_base && in is_equal_to()
231 m_writemask == oth.m_writemask && in is_equal_to()
233 m_stream == oth.m_stream; in is_equal_to()
283 bool equal = gpr() == oth.gpr() && in is_equal_to()
285 m_type == oth.m_type && in is_equal_to()
[all …]
/dports/graphics/mesa-gallium-vdpau/mesa-21.3.6/src/gallium/drivers/r600/sfn/
H A Dsfn_instruction_export.cpp76 return (gpr() == oth.gpr()) && in is_equal_to()
77 (m_type == oth.m_type) && in is_equal_to()
78 (m_loc == oth.m_loc) && in is_equal_to()
79 (m_is_last == oth.m_is_last); in is_equal_to()
226 return gpr() == oth.gpr() && in is_equal_to()
229 m_array_base == oth.m_array_base && in is_equal_to()
231 m_writemask == oth.m_writemask && in is_equal_to()
233 m_stream == oth.m_stream; in is_equal_to()
283 bool equal = gpr() == oth.gpr() && in is_equal_to()
285 m_type == oth.m_type && in is_equal_to()
[all …]
/dports/graphics/mesa-dri-gallium/mesa-21.3.6/src/gallium/drivers/r600/sfn/
H A Dsfn_instruction_export.cpp76 return (gpr() == oth.gpr()) && in is_equal_to()
77 (m_type == oth.m_type) && in is_equal_to()
78 (m_loc == oth.m_loc) && in is_equal_to()
79 (m_is_last == oth.m_is_last); in is_equal_to()
226 return gpr() == oth.gpr() && in is_equal_to()
229 m_array_base == oth.m_array_base && in is_equal_to()
231 m_writemask == oth.m_writemask && in is_equal_to()
233 m_stream == oth.m_stream; in is_equal_to()
283 bool equal = gpr() == oth.gpr() && in is_equal_to()
285 m_type == oth.m_type && in is_equal_to()
[all …]
/dports/graphics/mesa-gallium-xa/mesa-21.3.6/src/gallium/drivers/r600/sfn/
H A Dsfn_instruction_export.cpp76 return (gpr() == oth.gpr()) && in is_equal_to()
77 (m_type == oth.m_type) && in is_equal_to()
78 (m_loc == oth.m_loc) && in is_equal_to()
79 (m_is_last == oth.m_is_last); in is_equal_to()
226 return gpr() == oth.gpr() && in is_equal_to()
229 m_array_base == oth.m_array_base && in is_equal_to()
231 m_writemask == oth.m_writemask && in is_equal_to()
233 m_stream == oth.m_stream; in is_equal_to()
283 bool equal = gpr() == oth.gpr() && in is_equal_to()
285 m_type == oth.m_type && in is_equal_to()
[all …]
/dports/graphics/mesa-devel/mesa-22.0-branchpoint-2059-ge8a63cf61ec/src/gallium/drivers/r600/sfn/
H A Dsfn_instruction_export.cpp76 return (gpr() == oth.gpr()) && in is_equal_to()
77 (m_type == oth.m_type) && in is_equal_to()
78 (m_loc == oth.m_loc) && in is_equal_to()
79 (m_is_last == oth.m_is_last); in is_equal_to()
226 return gpr() == oth.gpr() && in is_equal_to()
229 m_array_base == oth.m_array_base && in is_equal_to()
231 m_writemask == oth.m_writemask && in is_equal_to()
233 m_stream == oth.m_stream; in is_equal_to()
283 bool equal = gpr() == oth.gpr() && in is_equal_to()
285 m_type == oth.m_type && in is_equal_to()
[all …]
/dports/graphics/mesa-dri/mesa-21.3.6/src/gallium/drivers/r600/sfn/
H A Dsfn_instruction_export.cpp76 return (gpr() == oth.gpr()) && in is_equal_to()
77 (m_type == oth.m_type) && in is_equal_to()
78 (m_loc == oth.m_loc) && in is_equal_to()
79 (m_is_last == oth.m_is_last); in is_equal_to()
226 return gpr() == oth.gpr() && in is_equal_to()
229 m_array_base == oth.m_array_base && in is_equal_to()
231 m_writemask == oth.m_writemask && in is_equal_to()
233 m_stream == oth.m_stream; in is_equal_to()
283 bool equal = gpr() == oth.gpr() && in is_equal_to()
285 m_type == oth.m_type && in is_equal_to()
[all …]

12345678910>>...58