Searched refs:pos (Results 101 - 125 of 3783) sorted by relevance

1234567891011>>

/external/wpa_supplicant_8/wpa_supplicant/src/ap/
H A Dwpa_auth_ie.c31 u8 *pos, *count; local
38 pos = (u8 *) (hdr + 1);
46 RSN_SELECTOR_PUT(pos, suite);
47 pos += WPA_SELECTOR_LEN;
49 count = pos;
50 pos += 2;
52 num_suites = wpa_cipher_put_suites(pos, conf->wpa_pairwise);
58 pos += num_suites * WPA_SELECTOR_LEN;
62 count = pos;
63 pos
96 u8 *pos, *count; local
367 u8 *pos, buf[128]; local
410 wpa_add_kde(u8 *pos, u32 kde, const u8 *data, size_t data_len, const u8 *data2, size_t data2_len) argument
737 wpa_parse_generic(const u8 *pos, const u8 *end, struct wpa_eapol_ie_parse *ie) argument
850 const u8 *pos, *end; local
[all...]
/external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
H A Drtcp_sender.cc665 int& pos,
670 if(pos + 52 >= IP_PACKET_SIZE)
677 uint32_t posNumberOfReportBlocks = pos;
678 rtcpbuffer[pos++]=(uint8_t)0x80;
681 rtcpbuffer[pos++]=(uint8_t)200;
707 pos++;
708 pos++;
711 ModuleRTPUtility::AssignUWord32ToBuffer(rtcpbuffer+pos, _SSRC);
712 pos += 4;
714 ModuleRTPUtility::AssignUWord32ToBuffer(rtcpbuffer+pos, NTPse
663 BuildSR(const FeedbackState& feedback_state, uint8_t* rtcpbuffer, int& pos, uint32_t NTPsec, uint32_t NTPfrac) argument
749 BuildSDEC(uint8_t* rtcpbuffer, int& pos) argument
842 BuildRR(uint8_t* rtcpbuffer, int& pos, const uint32_t NTPsec, const uint32_t NTPfrac) argument
900 BuildExtendedJitterReport( uint8_t* rtcpbuffer, int& pos, const uint32_t jitterTransmissionTimeOffset) argument
935 BuildPLI(uint8_t* rtcpbuffer, int& pos) argument
961 BuildFIR(uint8_t* rtcpbuffer, int& pos, bool repeat) argument
1011 BuildSLI(uint8_t* rtcpbuffer, int& pos, const uint8_t pictureID) argument
1057 BuildRPSI(uint8_t* rtcpbuffer, int& pos, const uint64_t pictureID, const uint8_t payloadType) argument
1134 BuildREMB(uint8_t* rtcpbuffer, int& pos) argument
1194 BuildTMMBR(ModuleRtpRtcpImpl* rtp_rtcp_module, uint8_t* rtcpbuffer, int& pos) argument
1303 BuildTMMBN(uint8_t* rtcpbuffer, int& pos) argument
1375 BuildAPP(uint8_t* rtcpbuffer, int& pos) argument
1412 BuildNACK(uint8_t* rtcpbuffer, int& pos, const int32_t nackSize, const uint16_t* nackList, std::string* nackString) argument
1482 BuildBYE(uint8_t* rtcpbuffer, int& pos) argument
1526 BuildReceiverReferenceTime(uint8_t* buffer, int& pos, uint32_t ntp_sec, uint32_t ntp_frac) argument
1577 BuildDlrr(uint8_t* buffer, int& pos, const RtcpReceiveTimeInfo& info) argument
1628 BuildVoIPMetric(uint8_t* rtcpbuffer, int& pos) argument
2181 WriteAllReportBlocksToBuffer( uint8_t* rtcpbuffer, int pos, uint8_t& numberOfReportBlocks, const uint32_t NTPsec, const uint32_t NTPfrac) argument
[all...]
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dtokiter.cpp19 pos = lastpos = -1;
37 pos = 0;
39 lastpos = pos;
65 ICU_Utility::skipWhitespace(line, pos, TRUE);
66 if (pos == line.length()) {
69 UChar c = line.charAt(pos++);
82 while (pos < line.length()) {
83 c = line.charAt(pos); // 16-bit ok
85 UChar32 c32 = line.unescapeAt(pos);
93 ++pos;
[all...]
/external/icu/icu4c/source/test/intltest/
H A Dtokiter.cpp20 pos = lastpos = -1;
38 pos = 0;
40 lastpos = pos;
66 ICU_Utility::skipWhitespace(line, pos, TRUE);
67 if (pos == line.length()) {
70 UChar c = line.charAt(pos++);
83 while (pos < line.length()) {
84 c = line.charAt(pos); // 16-bit ok
86 UChar32 c32 = line.unescapeAt(pos);
94 ++pos;
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/functions/escape/
H A DSimpleEscapingFunction.java87 int pos = 0;
88 int start = pos;
89 while (pos < len) {
92 final char chr = in.charAt(pos);
97 if (pos > start) {
98 out.append(in, start, pos);
101 pos += 1;
102 start = pos;
105 pos += 1;
107 if (pos > star
[all...]
/external/jsmn/
H A Djsmn.c42 start = parser->pos;
44 for (; parser->pos < len && js[parser->pos] != '\0'; parser->pos++) {
45 switch (js[parser->pos]) {
54 if (js[parser->pos] < 32 || js[parser->pos] >= 127) {
55 parser->pos = start;
61 parser->pos = start;
67 parser->pos
[all...]
/external/smack/src/org/xbill/DNS/
H A DCompression.java17 int pos; field in class:Compression.Entry
36 * @param pos The position at which the name is added.
40 add(int pos, Name name) { argument
41 if (pos > MAX_POINTER)
46 entry.pos = pos;
50 System.err.println("Adding " + name + " at " + pos);
62 int pos = -1;
65 pos = entry.pos;
[all...]
/external/wpa_supplicant_8/hostapd/src/eapol_auth/
H A Deapol_auth_dump.c124 char *pos, *end; local
127 pos = buf;
128 end = pos + buflen;
130 ret = os_snprintf(pos, end - pos, "aWhile=%d\nquietWhile=%d\n"
133 if (ret < 0 || ret >= end - pos)
134 return pos - buf;
135 pos += ret;
138 ret = os_snprintf(pos, end - pos,
[all...]
/external/wpa_supplicant_8/src/eapol_auth/
H A Deapol_auth_dump.c124 char *pos, *end; local
127 pos = buf;
128 end = pos + buflen;
130 ret = os_snprintf(pos, end - pos, "aWhile=%d\nquietWhile=%d\n"
133 if (ret < 0 || ret >= end - pos)
134 return pos - buf;
135 pos += ret;
138 ret = os_snprintf(pos, end - pos,
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/eapol_auth/
H A Deapol_auth_dump.c124 char *pos, *end; local
127 pos = buf;
128 end = pos + buflen;
130 ret = os_snprintf(pos, end - pos, "aWhile=%d\nquietWhile=%d\n"
133 if (ret < 0 || ret >= end - pos)
134 return pos - buf;
135 pos += ret;
138 ret = os_snprintf(pos, end - pos,
[all...]
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/ilbc/
H A Dsimple_lsf_dequant.c31 int i, j, pos, cb_pos; local
35 pos = 0;
39 lsfdeq[pos + j] = WebRtcIlbcfix_kLsfCb[cb_pos +
42 pos += WebRtcIlbcfix_kLsfDimCb[i];
48 pos = 0;
52 lsfdeq[LPC_FILTERORDER + pos + j] = WebRtcIlbcfix_kLsfCb[cb_pos +
55 pos += WebRtcIlbcfix_kLsfDimCb[i];
/external/javassist/src/main/javassist/convert/
H A DTransformAfter.java30 protected int match2(int pos, CodeIterator iterator) throws BadBytecode { argument
31 iterator.move(pos);
37 pos = iterator.next();
39 iterator.writeByte(iterator.byteAt(pos), p);
40 iterator.write16bit(iterator.u16bitAt(pos + 1), p + 1);
41 iterator.writeByte(INVOKESTATIC, pos);
42 iterator.write16bit(newIndex, pos + 1);
H A DTransformNew.java50 public int transform(CtClass clazz, int pos, CodeIterator iterator, argument
54 int c = iterator.byteAt(pos);
56 index = iterator.u16bitAt(pos + 1);
58 if (iterator.byteAt(pos + 3) != DUP)
62 iterator.writeByte(NOP, pos);
63 iterator.writeByte(NOP, pos + 1);
64 iterator.writeByte(NOP, pos + 2);
65 iterator.writeByte(NOP, pos + 3);
71 smt.removeNew(pos);
76 sm.removeNew(pos);
[all...]
/external/libcxx/test/strings/basic.string/string.access/
H A Dat.pass.cpp12 // const_reference at(size_type pos) const;
13 // reference at(size_type pos);
23 test(S s, typename S::size_type pos) argument
28 assert(s.at(pos) == s[pos]);
29 assert(cs.at(pos) == cs[pos]);
30 assert(pos < cs.size());
34 assert(pos >= s.size());
/external/netcat/
H A Datomicio.c44 size_t pos = 0; local
50 while (n > pos) {
51 res = (f) (fd, s + pos, n - pos);
63 return pos;
65 pos += (size_t)res;
68 return (pos);
/external/wpa_supplicant_8/hostapd/src/crypto/
H A Dsha1-prf.c34 size_t pos, plen; local
47 pos = 0;
48 while (pos < buf_len) {
49 plen = buf_len - pos;
52 &buf[pos]))
54 pos += SHA1_MAC_LEN;
59 os_memcpy(&buf[pos], hash, plen);
/external/wpa_supplicant_8/src/crypto/
H A Dsha1-prf.c34 size_t pos, plen; local
47 pos = 0;
48 while (pos < buf_len) {
49 plen = buf_len - pos;
52 &buf[pos]))
54 pos += SHA1_MAC_LEN;
59 os_memcpy(&buf[pos], hash, plen);
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Dsha1-prf.c34 size_t pos, plen; local
47 pos = 0;
48 while (pos < buf_len) {
49 plen = buf_len - pos;
52 &buf[pos]))
54 pos += SHA1_MAC_LEN;
59 os_memcpy(&buf[pos], hash, plen);
/external/wpa_supplicant_8/wpa_supplicant/
H A Dwpa_passphrase.c19 char *ssid, *passphrase, buf[64], *pos; local
39 pos = buf;
40 while (*pos != '\0') {
41 if (*pos == '\r' || *pos == '\n') {
42 *pos = '\0';
45 pos++;
/external/chromium_org/tools/traceline/traceline/
H A Dmain.cc1027 int pos = kOffLogAreaPtr; local
1028 int i = IntAt(pos);
1029 pos += 4;
1034 for (int end = pos + i; pos < end; ) {
1036 __int64 ts = Int64At(pos);
1037 pos += 8;
1038 void* cpuid = reinterpret_cast<void*>(IntAt(pos));
1039 pos += 4;
1042 printf("'cpu': 0x%x,\n'thread': 0x%x,\n", cpuid, IntAt(pos));
1209 IntAt(int pos) argument
1210 Int64At(int pos) argument
[all...]
/external/wpa_supplicant_8/hostapd/src/tls/
H A Dpkcs1.c23 u8 *pos; local
44 pos = out;
45 *pos++ = 0x00;
46 *pos++ = block_type; /* BT */
50 os_memset(pos, 0x00, ps_len);
51 pos += ps_len;
54 os_memset(pos, 0xff, ps_len);
55 pos += ps_len;
58 if (os_get_random(pos, ps_len) < 0) {
64 if (*pos
102 u8 *pos, *end; local
139 u8 *pos; local
204 const u8 *pos, *end, *next, *da_end; local
[all...]
/external/wpa_supplicant_8/src/tls/
H A Dpkcs1.c23 u8 *pos; local
44 pos = out;
45 *pos++ = 0x00;
46 *pos++ = block_type; /* BT */
50 os_memset(pos, 0x00, ps_len);
51 pos += ps_len;
54 os_memset(pos, 0xff, ps_len);
55 pos += ps_len;
58 if (os_get_random(pos, ps_len) < 0) {
64 if (*pos
102 u8 *pos, *end; local
139 u8 *pos; local
204 const u8 *pos, *end, *next, *da_end; local
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/tls/
H A Dpkcs1.c23 u8 *pos; local
44 pos = out;
45 *pos++ = 0x00;
46 *pos++ = block_type; /* BT */
50 os_memset(pos, 0x00, ps_len);
51 pos += ps_len;
54 os_memset(pos, 0xff, ps_len);
55 pos += ps_len;
58 if (os_get_random(pos, ps_len) < 0) {
64 if (*pos
102 u8 *pos, *end; local
139 u8 *pos; local
204 const u8 *pos, *end, *next, *da_end; local
[all...]
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DInsertLineBreakCommand.cpp78 Position pos(caret.deepEquivalent());
80 pos = positionAvoidingSpecialElementBoundary(pos);
82 pos = positionOutsideTabSpan(pos);
85 if (shouldUseBreakElement(pos))
93 bool needExtraLineBreak = !isHTMLHRElement(*pos.deprecatedNode()) && !isHTMLTableElement(*pos.deprecatedNode());
95 insertNodeAt(nodeToInsert.get(), pos);
102 } else if (pos
[all...]
/external/oprofile/libdb/
H A Ddb_debug.c19 odb_node_nr_t pos; local
24 for (pos = 0 ; pos < data->descr->size * BUCKET_FACTOR ; ++pos) {
26 odb_index_t index = data->hash_base[pos];
43 index = data->hash_base[pos];
57 index = data->hash_base[pos];
71 odb_node_nr_t pos; local
76 for (pos = 1 ; pos < dat
91 odb_node_nr_t pos; local
[all...]

Completed in 592 milliseconds

1234567891011>>