Searched refs:parts (Results 1 - 25 of 281) sorted by relevance

1234567891011>>

/macosx-10.9.5/dcerpc-58/dcerpc/ncklib/
H A Dcnid.h101 ((id1.parts.id_seqnum == id2.parts.id_seqnum) &&\
102 (id1.parts.id_index == id2.parts.id_index))
108 #define RPC_CN_LOCAL_ID_VALID(id) (id.parts.id_seqnum != 0)
115 id.parts.id_seqnum = 0;\
116 id.parts.id_index = 0;\
H A Dcnid.c227 lcl_id->parts.id_seqnum = seqnum;
232 lcl_id->parts.id_index = (unsigned16) index;
/macosx-10.9.5/ruby-104/ruby/lib/rdoc/markup/
H A Draw.rb7 # The component parts of the list
9 attr_reader :parts
12 # Creates a new Raw containing +parts+
14 def initialize *parts
15 @parts = []
16 @parts.concat parts
23 @parts << text
27 self.class == other.class and @parts == other.parts
[all...]
H A Ddocument.rb21 # The parts of the Document
23 attr_reader :parts
26 # Creates a new Document with +parts+
28 def initialize *parts
29 @parts = []
30 @parts.concat parts
43 parts.concat part.parts
44 parts << RDo
[all...]
H A Dlist_item.rb21 attr_reader :parts
24 # Creates a new ListItem with an optional +label+ containing +parts+
26 def initialize label = nil, *parts
28 @parts = []
29 @parts.concat parts
36 @parts << part
42 @parts == other.parts
46 # Runs this list item and all its #parts throug
[all...]
H A Dto_joined_paragraph.rb2 # Joins the parts of an RDoc::Markup::Paragraph into a single String.
22 # Converts the parts of +paragraph+ to a single entry.
25 parts = []
28 paragraph.parts.each do |part|
33 parts << part
37 parts << part
42 parts = parts.map do |part|
51 #parts = paragraph.parts
[all...]
H A Dverbatim.rb11 def initialize *parts # :nodoc:
32 parts = []
36 @parts.each do |part|
40 parts << part if newlines == 1
43 parts << part
47 parts.pop if parts.last =~ /\A\r?\n\z/
49 @parts = parts
61 q.seplist @parts d
[all...]
H A Dindented_paragraph.rb12 # Creates a new IndentedParagraph containing +parts+ indented with +indent+
15 def initialize indent, *parts
18 super(*parts)
37 @parts.map do |part|
H A Dparagraph.rb18 @parts.map do |part|
/macosx-10.9.5/OpenSSH-186/openssh/openbsd-compat/
H A Dinet_aton.c93 u_int parts[4]; local
94 u_int *pp = parts;
131 if (pp >= parts + 3)
145 * the number of parts specified.
147 n = pp - parts + 1;
157 if ((val > 0xffffff) || (parts[0] > 0xff))
159 val |= parts[0] << 24;
163 if ((val > 0xffff) || (parts[0] > 0xff) || (parts[1] > 0xff))
165 val |= (parts[
[all...]
/macosx-10.9.5/xnu-2422.115.4/libkern/net/
H A Dinet_aton.c43 u_long parts[4]; local
75 parts[n] = val;
106 /* Concoct the address according to the number of parts specified. */
116 if (val > 0xffffff || parts[0] > 0xff)
118 val |= parts[0] << 24;
122 if (val > 0xffff || parts[0] > 0xff || parts[1] > 0xff)
124 val |= (parts[0] << 24) | (parts[1] << 16);
128 if (val > 0xff || parts[
[all...]
/macosx-10.9.5/bind9-45.100/bind9/lib/isc/
H A Dinet_aton.c97 isc_uint8_t parts[4]; local
98 isc_uint8_t *pp = parts;
148 if (pp >= parts + 3 || val > 0xffU)
167 * the number of parts specified.
169 n = pp - parts + 1;
177 val |= parts[0] << 24;
183 val |= (parts[0] << 24) | (parts[1] << 16);
189 val |= (parts[0] << 24) | (parts[
[all...]
/macosx-10.9.5/bind9-45.100/bind9/lib/lwres/
H A Dlwinetaton.c101 lwres_uint8_t parts[4]; local
102 lwres_uint8_t *pp = parts;
157 if (pp >= parts + 3 || val > 0xffU)
176 * the number of parts specified.
178 n = pp - parts + 1;
186 val |= parts[0] << 24;
192 val |= (parts[0] << 24) | (parts[1] << 16);
198 val |= (parts[0] << 24) | (parts[
[all...]
/macosx-10.9.5/ntp-88/lib/isc/
H A Dinet_aton.c97 isc_uint8_t parts[4]; local
98 isc_uint8_t *pp = parts;
148 if (pp >= parts + 3 || val > 0xffU)
167 * the number of parts specified.
169 n = pp - parts + 1;
177 val |= parts[0] << 24;
183 val |= (parts[0] << 24) | (parts[1] << 16);
189 val |= (parts[0] << 24) | (parts[
[all...]
/macosx-10.9.5/ruby-104/ruby/lib/rdoc/
H A Drd.rb88 document.parts.shift if RDoc::Markup::BlankLine === document.parts.first
89 document.parts.pop if RDoc::Markup::BlankLine === document.parts.last
/macosx-10.9.5/libpcap-42/libpcap/Win32/Src/
H A Dinet_net.c51 u_long parts[4], *pp = parts; local
85 if (pp >= parts + 4)
93 n = pp - parts;
98 val |= parts[i] & 0xff;
/macosx-10.9.5/Libc-997.90.3/net/FreeBSD/
H A Dinet_addr.c117 u_int8_t parts[4]; local
118 u_int8_t *pp = parts;
163 if (pp >= parts + 3 || val > 0xffU)
184 * the number of parts specified.
186 n = pp - parts + 1;
194 val |= parts[0] << 24;
200 val |= (parts[0] << 24) | (parts[1] << 16);
206 val |= (parts[0] << 24) | (parts[
[all...]
H A Dinet_network.c60 in_addr_t parts[4], *pp = parts; local
89 if (pp >= parts + 4 || val > 0xffU)
98 n = pp - parts;
103 val |= parts[i] & 0xff;
/macosx-10.9.5/bash-92/bash-3.2/lib/sh/
H A Dinet_aton.c119 u_int parts[4]; local
120 register u_int *pp = parts;
162 if (pp >= parts + 3)
176 * the number of parts specified.
178 n = pp - parts + 1;
190 val |= parts[0] << 24;
196 val |= (parts[0] << 24) | (parts[1] << 16);
202 val |= (parts[0] << 24) | (parts[
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/efl/DefaultTheme/widget/cursor/
H A Dcursor.edc33 parts {
54 parts {
75 parts {
96 parts {
117 parts {
138 parts {
159 parts {
180 parts {
201 parts {
222 parts {
[all...]
/macosx-10.9.5/lukemftp-13.92.1/tnftp/libnetbsd/
H A Dinet_pton.c93 unsigned int parts[4]; local
94 register unsigned int *pp = parts;
140 if (pp >= parts + 3)
154 * the number of parts specified.
156 n = pp - parts + 1;
169 if (parts[0] > 0xff || val > 0xffffff)
171 val |= parts[0] << 24;
175 if ((parts[0] | parts[1]) > 0xff || val > 0xffff)
177 val |= (parts[
[all...]
/macosx-10.9.5/CPANInternal-140/XML-SAX/SAX/PurePerl/Reader/
H A DString.pm25 my @parts;
26 @parts[BUFFER, EOF, LINE, COLUMN, INTERNAL_BUFFER, DISCARDED] =
28 return bless \@parts, $class;
/macosx-10.9.5/WebCore-7537.78.1/platform/efl/DefaultTheme/widget/mediacontrol/seekbackwardbutton/
H A Dseekbackward_button.edc29 parts {
/macosx-10.9.5/WebCore-7537.78.1/platform/efl/DefaultTheme/widget/mediacontrol/seekforwardbutton/
H A Dseekforward_button.edc29 parts {
/macosx-10.9.5/llvmCore-3425.0.33/unittests/ADT/
H A DStringRefTest.cpp145 SmallVector<StringRef, 5> parts; local
149 StringRef(",ab,,c,").split(parts, ",", -1, false);
150 EXPECT_TRUE(parts == expected);
152 expected.clear(); parts.clear();
155 StringRef(",ab,,c,").split(parts, ",", -1, true);
156 EXPECT_TRUE(parts == expected);
158 expected.clear(); parts.clear();
160 StringRef("").split(parts, ",", -1, true);
161 EXPECT_TRUE(parts == expected);
163 expected.clear(); parts
[all...]

Completed in 447 milliseconds

1234567891011>>