HomeSort by relevance Sort by last modified time
    Searched defs:packet (Results 351 - 375 of 615) sorted by null

<<11121314151617181920>>

  /external/eigen/Eigen/src/Core/
CwiseBinaryOp.h 179 EIGEN_STRONG_INLINE PacketScalar packet(Index rowId, Index colId) const function in class:Eigen::CwiseBinaryOpImpl
181 return derived().functor().packetOp(derived().lhs().template packet<LoadMode>(rowId, colId),
182 derived().rhs().template packet<LoadMode>(rowId, colId));
192 EIGEN_STRONG_INLINE PacketScalar packet(Index index) const function in class:Eigen::CwiseBinaryOpImpl
194 return derived().functor().packetOp(derived().lhs().template packet<LoadMode>(index),
195 derived().rhs().template packet<LoadMode>(index));
CwiseNullaryOp.h 75 EIGEN_STRONG_INLINE PacketScalar packet(Index rowId, Index colId) const function in class:Eigen::CwiseNullaryOp
86 EIGEN_STRONG_INLINE PacketScalar packet(Index index) const function in class:Eigen::CwiseNullaryOp
DenseCoeffsBase.h 198 * \returns the packet of coefficients starting at the given row and column. It is your responsibility
199 * to ensure that a packet really starts there. This method is only available on expressions having the
204 * starting at an address which is a multiple of the packet size.
208 EIGEN_STRONG_INLINE PacketReturnType packet(Index row, Index col) const function in class:Eigen::DenseCoeffsBase
212 return derived().template packet<LoadMode>(row,col);
220 return packet<LoadMode>(rowIndexByOuterInner(outer, inner),
225 * \returns the packet of coefficients starting at the given index. It is your responsibility
226 * to ensure that a packet really starts there. This method is only available on expressions having the
231 * starting at an address which is a multiple of the packet size.
235 EIGEN_STRONG_INLINE PacketReturnType packet(Index index) cons function in class:Eigen::DenseCoeffsBase
    [all...]
Transpose.h 154 inline const PacketScalar packet(Index rowId, Index colId) const function in class:Eigen::TransposeImpl
156 return derived().nestedExpression().template packet<LoadMode>(colId, rowId);
166 inline const PacketScalar packet(Index index) const function in class:Eigen::TransposeImpl
168 return derived().nestedExpression().template packet<LoadMode>(index);
  /external/eigen/Eigen/src/Core/products/
CoeffBasedProduct.h 26 * on the generic Assign mechanism to evaluate the product per coeff (or packet).
34 template<int StorageOrder, int UnrollingIndex, typename Lhs, typename Rhs, typename Packet, int LoadMode>
97 * of Product. If the Product itself is not a packet-access expression, there is still a chance that the inner
170 /* Allow index-based non-packet access. It is impossible though to allow index-based packed access,
183 EIGEN_STRONG_INLINE const PacketScalar packet(Index row, Index col) const function in class:Eigen::CoeffBasedProduct
276 template<int UnrollingIndex, typename Lhs, typename Rhs, typename Packet>
283 product_coeff_vectorized_unroller<UnrollingIndex-PacketSize, Lhs, Rhs, Packet>::run(row, col, lhs, rhs, pres);
284 pres = padd(pres, pmul( lhs.template packet<Aligned>(row, UnrollingIndex) , rhs.template packet<Aligned>(UnrollingIndex, col) ));
288 template<typename Lhs, typename Rhs, typename Packet>
    [all...]
  /external/libnfc-nxp/src/
phHciNfc_Generic.c 225 * The phHciNfc_Receive_HCP function receive the HCI Host Control Packet
641 * \brief Sends the HCP Packet to the lower link layer .
643 * This function Sends the HCI Data in the HCP packet format to the below
723 * \brief Receives the HCP Packet from the lower link layer .
725 * This function receives the HCI Data in the HCP packet format from the below
742 phHciNfc_HCP_Packet_t *packet = NULL; local
746 packet = (phHciNfc_HCP_Packet_t *)pdata;
747 chainbit = (uint8_t) GET_BITS8( packet->hcp_header,
809 * \brief Receives the HCP Packet from the lower link layer .
811 * This function receives the HCI Data in the HCP packet format from the belo
828 phHciNfc_HCP_Packet_t *packet = NULL; local
902 phHciNfc_HCP_Packet_t *packet = NULL; local
990 phHciNfc_HCP_Packet_t *packet = (phHciNfc_HCP_Packet_t *)pdata; local
1066 phHciNfc_HCP_Packet_t *packet = NULL; local
1184 phHciNfc_HCP_Packet_t *packet = NULL; local
    [all...]
  /external/libogg/include/ogg/
ogg.h 54 unsigned char *body_data; /* bytes from packet bodies */
72 int e_o_s; /* set when we have buffered the last packet in the
88 to a single raw Ogg/Vorbis packet *************************************/
91 unsigned char *packet; member in struct:__anon28331
  /external/libopus/tests/
test_opus_decode.c 62 unsigned char *packet; local
69 packet=malloc(sizeof(unsigned char)*MAX_PACKET);
70 if(packet==NULL)test_failed();
131 out_samples = opus_decode(dec[t], packet, 0, outbuf, 120/factor, fec);
136 out_samples = opus_decode(dec[t], packet, 0, outbuf, 0, fec);
138 out_samples = opus_decode(dec[t], packet, 0, 0, 0, fec);
143 out_samples = opus_decode(dec[t], packet, -1, outbuf, MAX_FRAME_SAMP, fec);
145 out_samples = opus_decode(dec[t], packet, INT_MIN, outbuf, MAX_FRAME_SAMP, fec);
147 out_samples = opus_decode(dec[t], packet, -1, outbuf, -1, fec);
151 out_samples = opus_decode(dec[t], packet, 1, outbuf, MAX_FRAME_SAMP, fec?-1:2)
    [all...]
  /external/lldb/source/Plugins/Process/gdb-remote/
GDBRemoteCommunication.cpp 57 m_packets[idx].packet.assign (1, packet_char);
75 m_packets[idx].packet.assign (src, 0, src_len);
93 if (entry.type == ePacketTypeInvalid || entry.packet.empty())
95 strm.Printf ("history[%u] tid=0x%4.4" PRIx64 " <%4u> %s packet: %s\n",
100 entry.packet.c_str());
117 if (entry.type == ePacketTypeInvalid || entry.packet.empty())
119 log->Printf ("history[%u] tid=0x%4.4" PRIx64 " <%4u> %s packet: %s",
124 entry.packet.c_str());
179 log->Printf ("<%4zu> send packet: %c", bytes_written, ch);
192 log->Printf ("<%4zu> send packet: %c", bytes_written, ch)
259 StringExtractorGDBRemote packet; local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/r200/
r200_state_init.c 54 /* New (1.3) state mechanism. 3 commands (packet, scalar, vector) in
62 } packet[RADEON_MAX_STATE_PACKETS] = { variable in typeref:struct:__anon31668
168 return CP_PACKET0(packet[id].start, packet[id].len - 1);
490 OUT_BATCH(CP_PACKET0(packet[0].start, 3));
750 /* Fill in the packet headers:
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/stack/
UDPMessageProcessor.java 39 * packet, a new UDPMessageChannel is created (upto the max thread pool size).
190 DatagramPacket packet = new DatagramPacket(message, bufsize); local
191 sock.receive(packet);
240 this.messageQueue.add(packet);
244 new UDPMessageChannel(sipStack, this, packet);
  /external/qemu/distrib/sdl-1.2.15/src/video/ps2gs/
SDL_gsvideo.c 186 struct ps2_packet packet[1 + MAXTAGS * 2]; local
194 plist.packet = packet;
196 /* make BITBLT packet */
197 packet[pnum].ptr = hm;
198 packet[pnum].len = sizeof(head_tags);
214 packet[pnum].ptr = &im[it];
215 packet[pnum].len = sizeof(unsigned long long) * 2;
220 packet[pnum].ptr = (void *)data;
221 packet[pnum].len = isize
259 struct ps2_packet packet[2]; local
    [all...]
SDL_gsyuv.c 86 struct ps2_packet *packet; local
203 hwdata->plist.packet = (struct ps2_packet *)SDL_malloc(
205 if ( ! hwdata->plist.packet ) {
211 packet = hwdata->plist.packet;
224 packet[pnum].ptr = &tags[0];
225 packet[pnum].len = 10 * sizeof(*tags);
242 packet[pnum].ptr = &tags[10];
243 packet[pnum].len = 2 * sizeof(*tags);
247 packet[pnum].ptr = (void *)base
322 struct ps2_packet packet; local
    [all...]
  /external/skia/experimental/Networking/
SkSockets.cpp 90 char packet[PACKET_SIZE]; local
95 memset(packet, 0, PACKET_SIZE);
105 int retval = read(i, packet + bytesReadInPacket,
113 continue; //incomplete packet or frame, keep tring
133 continue; //incomplete packet, keep trying
137 memcpy(&h.done, packet, sizeof(bool));
138 memcpy(&h.bytes, packet + sizeof(bool), sizeof(int));
139 memcpy(&h.type, packet + sizeof(bool) + sizeof(int), sizeof(DataType));
141 //SkDebugf("bad packet\n");
145 //SkDebugf("read packet(done:%d, bytes:%d) from fd:%d in %d tries\n"
177 char packet[PACKET_SIZE]; local
    [all...]
  /external/smack/src/org/jivesoftware/smack/packet/
Message.java 21 package org.jivesoftware.smack.packet;
51 public class Message extends Packet {
88 * org.jivesoftware.smack.packet.Message.Type#normal}.
115 * language (see {@link Packet#getDefaultLanguage()}).
175 * @return the new {@link org.jivesoftware.smack.packet.Message.Subject}
233 * language (see {@link Packet#getDefaultLanguage()}).
294 * @return the new {@link org.jivesoftware.smack.packet.Message.Body}
467 // Add packet extensions, if any are defined.
Presence.java 21 package org.jivesoftware.smack.packet;
26 * Represents XMPP presence packets. Every presence packet has a type, which is one of
38 * <li>{@link Presence.Type#error error} -- the presence packet contains an error message.
59 public class Presence extends Packet {
93 * false if the user is unavailable (offline), or if this is a presence packet
121 * Returns the type of this presence packet.
123 * @return the type of the presence packet.
130 * Sets the type of the presence packet.
132 * @param type the type of the presence packet.
260 // Add the error sub-packet, if there is one
    [all...]
Privacy.java 20 package org.jivesoftware.smack.packet;
25 * A Privacy IQ Packet, is used by the {@link org.jivesoftware.smack.PrivacyListManager}
317 // Add packet extensions, if any are defined.
PrivacyItem.java 18 package org.jivesoftware.smack.packet;
21 * A privacy item acts a rule that when matched defines if a packet should be blocked or not.
RosterPacket.java 21 package org.jivesoftware.smack.packet;
42 * Adds a roster item to the packet.
61 * Returns the number of roster items in this roster packet.
72 * Returns an unmodifiable collection for the roster items in the packet.
74 * @return an unmodifiable collection for the roster items in the packet.
  /external/smack/src/org/jivesoftware/smackx/
Gateway.java 17 import org.jivesoftware.smack.packet.IQ;
18 import org.jivesoftware.smack.packet.Packet;
19 import org.jivesoftware.smack.packet.Presence;
20 import org.jivesoftware.smack.packet.Registration;
22 import org.jivesoftware.smackx.packet.DiscoverInfo;
23 import org.jivesoftware.smackx.packet.DiscoverInfo.Identity;
81 Registration packet = new Registration(); local
82 packet.setFrom(connection.getUser());
83 packet.setType(IQ.Type.GET)
    [all...]
  /external/smack/src/org/jivesoftware/smackx/bytestreams/socks5/packet/
Bytestream.java 14 package org.jivesoftware.smackx.bytestreams.socks5.packet;
21 import org.jivesoftware.smack.packet.IQ;
22 import org.jivesoftware.smack.packet.PacketExtension;
25 * A packet representing part of a SOCKS5 Bytestream negotiation.
136 * Returns the list of stream hosts contained in the packet.
138 * @return Returns the list of stream hosts contained in the packet.
164 * Returns the count of stream hosts contained in this packet.
166 * @return Returns the count of stream hosts contained in this packet.
192 * Returns the activate element of the packet sent to the proxy host to verify the identity of
195 * @return Returns the activate element of the packet sent to the proxy host to verify the
    [all...]
  /external/smack/src/org/jivesoftware/smackx/packet/
AdHocCommandData.java 21 package org.jivesoftware.smackx.packet;
23 import org.jivesoftware.smack.packet.IQ;
24 import org.jivesoftware.smack.packet.PacketExtension;
DiscoverInfo.java 21 package org.jivesoftware.smackx.packet;
23 import org.jivesoftware.smack.packet.IQ;
34 * A DiscoverInfo IQ packet, which is used by XMPP clients to request and receive information
90 * Adds a collection of features to the packet. Does noting if featuresToAdd is null.
211 // Add packet extensions, if any are defined.
358 // Check if this packet has 'lang' set and maybe append it to the resulting string
365 // Check if this packet has 'type' set and maybe append it to the resulting string
MUCUser.java 21 package org.jivesoftware.smackx.packet;
23 import org.jivesoftware.smack.packet.PacketExtension;
125 * the room occupants will receive a Presence packet of type 'unavailable' with the reason for
186 * the room occupants will receive a Presence packet of type 'unavailable' with the reason for
561 * the room occupants will receive a Presence packet of type 'unavailable' with the reason for
MultipleAddresses.java 21 package org.jivesoftware.smackx.packet;
23 import org.jivesoftware.smack.packet.PacketExtension;
30 * Packet extension that contains the list of addresses that a packet should be sent or was sent.
47 * Adds a new address to which the packet is going to be sent or was sent.
54 * @param delivered true when the packet was already delivered to this address.
71 * Indicate that the packet being sent should not be replied.

Completed in 1347 milliseconds

<<11121314151617181920>>