Home
last modified time | relevance | path

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

123456

/third_party/mesa3d/src/gallium/drivers/r600/sfn/
Dsfn_instr_export.cpp324 bool StreamOutInstr::is_equal_to(const StreamOutInstr& oth) const in is_equal_to()
327 return value() == oth.value() && in is_equal_to()
328 m_element_size == oth.m_element_size && in is_equal_to()
329 m_burst_count == oth.m_burst_count && in is_equal_to()
330 m_array_base == oth.m_array_base && in is_equal_to()
331 m_array_size == oth.m_array_size && in is_equal_to()
332 m_writemask == oth.m_writemask && in is_equal_to()
333 m_output_buffer == oth.m_output_buffer && in is_equal_to()
334 m_stream == oth.m_stream; in is_equal_to()
396 bool MemRingOutInstr::is_equal_to(const MemRingOutInstr& oth) const in is_equal_to()
[all …]
/third_party/rust/crates/rust-openssl/openssl/src/
Dbn.rs328 pub fn ucmp(&self, oth: &BigNumRef) -> Ordering { in ucmp()
329 unsafe { ffi::BN_ucmp(self.as_ptr(), oth.as_ptr()).cmp(&0) } in ucmp()
1151 fn eq(&self, oth: &BigNumRef) -> bool { in eq()
1152 self.cmp(oth) == Ordering::Equal in eq()
1157 fn eq(&self, oth: &BigNum) -> bool { in eq()
1158 self.eq(oth.deref()) in eq()
1165 fn eq(&self, oth: &BigNum) -> bool { in eq()
1166 self.deref().eq(oth) in eq()
1171 fn eq(&self, oth: &BigNumRef) -> bool { in eq()
1172 self.deref().eq(oth) in eq()
[all …]
/third_party/libphonenumber/resources/carrier/en/
D1.txt16 # American Samoa: http://www.itu.int/oth/T0202000004/en
17 # Bahamas: http://www.itu.int/oth/T0202000010/en
18 # Barbados: http://www.itu.int/oth/T0202000013/en
19 # Bermuda: http://www.itu.int/oth/T0202000018/en
20 # British Virgin Islands: http://www.itu.int/oth/T020200001E/en
21 # Dominica: http://www.itu.int/oth/T020200003B/en
22 # Dominican Rep.: http://www.itu.int/oth/T020200003C/en
23 # Grenada: http://www.itu.int/oth/T0202000057/en
25 # Jamaica: http://www.itu.int/oth/T020200006C/en
26 # Puerto Rico: http://www.itu.int/oth/T02020000AA/en
[all …]
D680.txt15 # Source: http://www.itu.int/oth/T02020000A2/en
D224.txt15 # Prefixes from http://www.itu.int/oth/T020200005B/en
D240.txt15 # Source: https://www.itu.int/oth/T0202000041/en and Muni's IR.21 doc.
D677.txt15 # Data from ITU: http://www.itu.int/oth/T02020000BF/en
D260.txt16 # http://www.itu.int/oth/T02020000E8/en
/third_party/openssl/crypto/x509/
Dv3_genn.c220 OTHERNAME *oth; in GENERAL_NAME_set0_othername() local
221 oth = OTHERNAME_new(); in GENERAL_NAME_set0_othername()
222 if (oth == NULL) in GENERAL_NAME_set0_othername()
224 ASN1_TYPE_free(oth->value); in GENERAL_NAME_set0_othername()
225 oth->type_id = oid; in GENERAL_NAME_set0_othername()
226 oth->value = value; in GENERAL_NAME_set0_othername()
227 GENERAL_NAME_set0_value(gen, GEN_OTHERNAME, oth); in GENERAL_NAME_set0_othername()
/third_party/gstreamer/gstplugins_bad/ext/sctp/usrsctp/usrsctplib/netinet/
Dsctp_cc_functions.c266 uint64_t oth, probepoint; in cc_bw_same() local
299 oth = net->cc_mod.rtcc.vol_reduce; in cc_bw_same()
300 oth <<= 16; in cc_bw_same()
301 oth |= net->cc_mod.rtcc.step_cnt; in cc_bw_same()
302 oth <<= 16; in cc_bw_same()
303 oth |= net->cc_mod.rtcc.last_step_state; in cc_bw_same()
308 oth, in cc_bw_same()
339 oth = net->cc_mod.rtcc.vol_reduce; in cc_bw_same()
340 oth <<= 16; in cc_bw_same()
341 oth |= net->cc_mod.rtcc.step_cnt; in cc_bw_same()
[all …]
/third_party/libffi/
Dmake_sunver.pl91 (undef, undef, undef, undef, $bind, $oth, undef, $shndx, $name) = split;
99 next if ($oth eq "H");
103 if ($bind !~ /^(GLOB|WEAK)/ or $oth ne "D") {
/third_party/ffmpeg/compat/solaris/
Dmake_sunver.pl108 (undef, undef, undef, undef, $bind, $oth, undef, $shndx, $name) = split;
116 next if ($oth eq "H");
120 if ($bind !~ /^(GLOB|WEAK)/ or $oth ne "D") {
/third_party/lwip/src/netif/ppp/
Dvj.c167 struct tcp_hdr *oth; in vj_compress_tcp() local
274 oth = (struct tcp_hdr *)&((struct vj_u32_t*)&cs->cs_ip)[ilen]; in vj_compress_tcp()
291 || TCPH_HDRLEN(th) != TCPH_HDRLEN(oth) in vj_compress_tcp()
293 || (TCPH_HDRLEN(th) > 5 && BCMP(th + 1, oth + 1, (TCPH_HDRLEN(th) - 5) << 2))) { in vj_compress_tcp()
307 } else if (th->urgp != oth->urgp) { in vj_compress_tcp()
315 if ((deltaS = (u16_t)(lwip_ntohs(th->wnd) - lwip_ntohs(oth->wnd))) != 0) { in vj_compress_tcp()
320 if ((deltaL = lwip_ntohl(th->ackno) - lwip_ntohl(oth->ackno)) != 0) { in vj_compress_tcp()
329 if ((deltaL = lwip_ntohl(th->seqno) - lwip_ntohl(oth->seqno)) != 0) { in vj_compress_tcp()
/third_party/icu/tools/multi/proj/icu4jscan/src/com/ibm/icu/dev/scan/
DCapElement.java31 CapElement oth = (CapElement)arg0; in compareTo() local
32 return attributes.toString().compareTo(oth.attributes.toString()); in compareTo()
/third_party/ltp/testcases/open_posix_testsuite/Documentation/
DHOWTO_Assertions31 oth - For any other material (design documents, analysis of
48 For oth:
53 last line assertion is taken from. If the type is oth and there are no
/third_party/libunwind/include/win/
Dfreebsd-elf32.h200 #define ELF32_ST_VISIBILITY(oth) ((oth) & 0x3) argument
Dfreebsd-elf64.h211 #define ELF64_ST_VISIBILITY(oth) ((oth) & 0x3) argument
/third_party/libunwind/include/mingw/
Dfreebsd-elf32.h200 #define ELF32_ST_VISIBILITY(oth) ((oth) & 0x3) argument
Dfreebsd-elf64.h211 #define ELF64_ST_VISIBILITY(oth) ((oth) & 0x3) argument
/third_party/libphonenumber/resources/geocoding/sr/
D381.txt16 # http://www.itu.int/oth/T02020000B9/en [2011-07-04]
D383.txt15 # Sources: https://www.itu.int/dms_pub/itu-t/oth/02/02/T02020000FD0001PDFE.pdf
/third_party/libphonenumber/resources/geocoding/ko/
D82.txt16 # http://www.itu.int/oth/T0202000072/en [2004-03-01]
/third_party/libphonenumber/resources/geocoding/sq/
D383.txt15 # Sources: https://www.itu.int/dms_pub/itu-t/oth/02/02/T02020000FD0001PDFE.pdf
/third_party/libphonenumber/resources/geocoding/en/
D688.txt15 # Generated from: https://www.itu.int/dms_pub/itu-t/oth/02/02/T02020000D90002PDFE.pdf
/third_party/libphonenumber/resources/geocoding/es/
D230.txt16 # http://www.itu.int/oth/T0202000088/en [2011-06-05]

123456