Searched defs:pos (Results 1 - 25 of 750) sorted by relevance

1234567891011>>

/external/dropbear/
H A Datomicio.c44 size_t pos = 0; local
46 while (n > pos) {
47 res = (f) (fd, s + pos, n - pos);
59 pos += res;
62 return (pos);
H A Dbuffer.h35 unsigned int pos; member in struct:buf
49 void buf_setpos(buffer* buf, unsigned int pos);
/external/icu4c/i18n/
H A Dmsgfmt_impl.h35 int32_t pos; member in class:FormatNameEnumeration
H A Dnfsubs.h33 int32_t pos; member in class:NFSubstitution
38 NFSubstitution(int32_t pos,
57 static NFSubstitution* makeSubstitution(int32_t pos,
111 * @param pos The position in toInsertInto where the owning rule's
115 virtual void doSubstitution(int64_t number, UnicodeString& toInsertInto, int32_t pos) const;
123 * @param pos The position in toInsertInto where the owning rule's
127 virtual void doSubstitution(double number, UnicodeString& toInsertInto, int32_t pos) const;
226 int32_t getPos() const { return pos; }
/external/icu4c/common/
H A Dstringpiece.cpp18 StringPiece::StringPiece(const StringPiece& x, int32_t pos) { argument
19 if (pos < 0) {
20 pos = 0;
21 } else if (pos > x.length_) {
22 pos = x.length_;
24 ptr_ = x.ptr_ + pos;
25 length_ = x.length_ - pos;
28 StringPiece::StringPiece(const StringPiece& x, int32_t pos, int32_t len) { argument
29 if (pos < 0) {
30 pos
[all...]
/external/icu4c/samples/msgfmt/answers/
H A Dmain_2.cpp25 FieldPosition pos; local
37 msg.format(msgArgs, 2, str, pos, status);
H A Dmain_3.cpp25 FieldPosition pos; local
37 msg.format(msgArgs, 2, str, pos, status);
/external/icu4c/samples/msgfmt/
H A Dmain.cpp25 FieldPosition pos; local
37 msg.format(msgArgs, 2, str, pos, status);
/external/opencore/codecs_v2/audio/gsm_amr/amr_nb/dec/src/
H A Dd2_11pf.cpp160 Word16 pos[NB_PULSE]; local
170 pos[0] = i * 5 + j * 2 + 1;
185 pos[1] = i * 5 + 4;
189 pos[1] = i * 5 + j;
210 * cod[pos[j]] = 8191;
214 * cod[pos[j]] = -8192;
218 cod[pos[j]] = i * 16383 - 8192;
H A Dd3_14pf.cpp165 Word16 pos[NB_PULSE]; local
171 pos[0] = i * 5;
185 pos[1] = i * 5 + j * 2 + 1;
199 pos[2] = i * 5 + j * 2 + 2;
218 * cod[pos[j]] = 8191;
222 * cod[pos[j]] = -8192;
226 cod[pos[j]] = i * 16383 - 8192;
H A Dd4_17pf.cpp46 the calculation of pos[2] incorrectly. The correct formula is pos2 =i*5+2,
185 Word16 pos[NB_PULSE]; local
203 pos[0] = i * 5; /* pos0 =i*5 */
212 pos[1] = i * 5 + 1; /* pos1 =i*5+1 */
222 pos[2] = i * 5 + 2; /* pos2 =i*5+2 */
238 pos[3] = i * 5 + 3 + j; /* pos3 =i*5+3+j */
257 * cod[pos[j]] = 8191;
261 * cod[pos[j]] = -8192;
265 cod[pos[j]] = i * 16383 - 8192;
H A Dd2_9pf.cpp187 Word16 pos[NB_PULSE]; local
207 pos[0] = i * 5 + startPos[k++];
215 pos[1] = i * 5 + startPos[k];
234 * cod[pos[j]] = 8191;
238 * cod[pos[j]] = -8192;
242 cod[pos[j]] = i * 16383 - 8192;
/external/astl/src/
H A Dlist.cpp57 void ListNodeBase::hook(ListNodeBase *const pos) { argument
58 mNext = pos;
59 mPrev = pos->mPrev;
60 pos->mPrev->mNext = this;
61 pos->mPrev = this;
/external/icu4c/test/intltest/
H A Dtokiter.h67 int32_t pos; member in class:TokenIterator
/external/webkit/WebCore/dom/
H A DPositionIterator.h46 PositionIterator(const Position& pos) argument
47 : m_anchorNode(pos.anchorNode())
48 , m_nodeAfterPositionInAnchor(m_anchorNode->childNode(pos.deprecatedEditingOffset()))
49 , m_offsetInAnchor(m_nodeAfterPositionInAnchor ? 0 : pos.deprecatedEditingOffset())
/external/webkit/WebCore/platform/text/qt/
H A DTextBoundariesQt.cpp49 int pos = iterator.toNextBoundary(); local
50 while (pos > 0) {
51 if (QChar(buffer[pos-1]).isLetterOrNumber())
52 return pos;
53 pos = iterator.toNextBoundary();
57 int pos = iterator.toPreviousBoundary(); local
58 while (pos > 0) {
59 if (QChar(buffer[pos]).isLetterOrNumber())
60 return pos;
61 pos
[all...]
/external/webkit/WebCore/rendering/
H A Dbreak_lines.h28 int nextBreakablePosition(const UChar*, int pos, int len, bool breakNBSP = false);
30 inline bool isBreakable(const UChar* str, int pos, int len, int& nextBreakable, bool breakNBSP = false) argument
32 if (pos > nextBreakable)
33 nextBreakable = nextBreakablePosition(str, pos, len, breakNBSP);
34 return pos == nextBreakable;
/external/wpa_supplicant/wpa_gui/
H A Duserdatarequest.ui.h17 char *tmp, *pos, *pos2; local
22 pos = strchr(tmp, '-');
23 if (pos == NULL) {
27 *pos++ = '\0';
29 pos2 = strchr(pos, ':');
36 networkid = atoi(pos);
/external/wpa_supplicant/
H A Dwpa_passphrase.c25 char *ssid, *passphrase, buf[64], *pos; local
45 pos = buf;
46 while (*pos != '\0') {
47 if (*pos == '\r' || *pos == '\n') {
48 *pos = '\0';
51 pos++;
/external/wpa_supplicant_6/wpa_supplicant/src/wps/
H A Dwps_attr_parse.c22 const u8 *pos, u16 len)
31 attr->version = pos;
39 attr->msg_type = pos;
47 attr->enrollee_nonce = pos;
55 attr->registrar_nonce = pos;
63 attr->uuid_e = pos;
71 attr->uuid_r = pos;
79 attr->auth_type_flags = pos;
87 attr->encr_type_flags = pos;
95 attr->conn_type_flags = pos;
21 wps_set_attr(struct wps_parse_attr *attr, u16 type, const u8 *pos, u16 len) argument
404 const u8 *pos, *end; local
[all...]
/external/wpa_supplicant_6/wpa_supplicant/wpa_gui/
H A Duserdatarequest.ui.h17 char *tmp, *pos, *pos2; local
22 pos = strchr(tmp, '-');
23 if (pos == NULL) {
27 *pos++ = '\0';
29 pos2 = strchr(pos, ':');
36 networkid = atoi(pos);
/external/wpa_supplicant_6/wpa_supplicant/
H A Dwpa_passphrase.c25 char *ssid, *passphrase, buf[64], *pos; local
45 pos = buf;
46 while (*pos != '\0') {
47 if (*pos == '\r' || *pos == '\n') {
48 *pos = '\0';
51 pos++;
/external/apache-http/src/org/apache/http/impl/auth/
H A DAuthSchemeBase.java85 int pos;
88 pos = ((FormattedHeader) header).getValuePos();
96 pos = 0;
98 while (pos < buffer.length() && HTTP.isWhitespace(buffer.charAt(pos))) {
99 pos++;
101 int beginIndex = pos;
102 while (pos < buffer.length() && !HTTP.isWhitespace(buffer.charAt(pos))) {
103 pos
114 parseChallenge( CharArrayBuffer buffer, int pos, int len) argument
[all...]
H A DRFC2617Scheme.java67 final CharArrayBuffer buffer, int pos, int len) throws MalformedChallengeException {
69 ParserCursor cursor = new ParserCursor(pos, buffer.length());
66 parseChallenge( final CharArrayBuffer buffer, int pos, int len) argument
/external/apache-http/src/org/apache/http/message/
H A DParserCursor.java49 private int pos; field in class:ParserCursor
61 this.pos = lowerBound;
73 return this.pos;
76 public void updatePos(int pos) { argument
77 if (pos < this.lowerBound) {
80 if (pos > this.upperBound) {
83 this.pos = pos;
87 return this.pos >= this.upperBound;
95 buffer.append(Integer.toString(this.pos));
[all...]

Completed in 284 milliseconds

1234567891011>>