/sdk/emulator/opengl/host/tools/emugen/ |
TypeFactory.cpp | 84 size_t pos = 0, last; local 86 name = getNextToken(str, pos, &last, WHITESPACE); 91 pos = last + 1; 93 size = getNextToken(str, pos, &last, WHITESPACE); 98 pos = last + 1; 100 printString = getNextToken(str, pos, &last, WHITESPACE); 106 pos = last + 1; 108 pointerDef = getNextToken(str, pos, &last, WHITESPACE);
|
/external/chromium_org/third_party/openssl/openssl/crypto/md5/asm/ |
md5-586.pl | 45 local($pos,$a,$b,$c,$d,$K,$ki,$s,$t)=@_; 47 &mov($tmp1,$C) if $pos < 0; 48 &mov($tmp2,&DWP($xo[$ki]*4,$K,"",0)) if $pos < 0; # very first one 61 &mov($tmp1,&Np($c)) if $pos < 1; # next tmp1 for R0 62 &mov($tmp1,&Np($c)) if $pos == 1; # next tmp1 for R1 66 &mov($tmp2,&DWP($xo[$ki+1]*4,$K,"",0)) if ($pos != 2); 73 local($pos,$a,$b,$c,$d,$K,$ki,$s,$t)=@_; 82 &mov($tmp2,&DWP($xo[$ki+1]*4,$K,"",0)) if ($pos != 2); 86 &mov($tmp1,&Np($c)) if $pos < 1; # G function - part 1 87 &mov($tmp1,&Np($c)) if $pos == 1; # G function - part [all...] |
/external/openssl/crypto/md5/asm/ |
md5-586.pl | 45 local($pos,$a,$b,$c,$d,$K,$ki,$s,$t)=@_; 47 &mov($tmp1,$C) if $pos < 0; 48 &mov($tmp2,&DWP($xo[$ki]*4,$K,"",0)) if $pos < 0; # very first one 61 &mov($tmp1,&Np($c)) if $pos < 1; # next tmp1 for R0 62 &mov($tmp1,&Np($c)) if $pos == 1; # next tmp1 for R1 66 &mov($tmp2,&DWP($xo[$ki+1]*4,$K,"",0)) if ($pos != 2); 73 local($pos,$a,$b,$c,$d,$K,$ki,$s,$t)=@_; 82 &mov($tmp2,&DWP($xo[$ki+1]*4,$K,"",0)) if ($pos != 2); 86 &mov($tmp1,&Np($c)) if $pos < 1; # G function - part 1 87 &mov($tmp1,&Np($c)) if $pos == 1; # G function - part [all...] |
/external/wpa_supplicant_8/src/eap_server/ |
eap_server_ikev2.c | 243 const u8 *pos; local 246 pos = eap_hdr_validate(EAP_VENDOR_IETF, EAP_TYPE_IKEV2, respData, 248 if (pos == NULL) { 259 u8 flags, const u8 *pos, const u8 **end) 264 respData, pos, *end); 348 const u8 *start, *pos, *end; local 354 pos = eap_hdr_validate(EAP_VENDOR_IETF, EAP_TYPE_IKEV2, respData, 356 if (pos == NULL) 359 start = pos; 366 flags = *pos++ [all...] |
eap_server_tnc.c | 327 const u8 *pos; local 330 pos = eap_hdr_validate(EAP_VENDOR_IETF, EAP_TYPE_TNC, respData, 332 if (pos == NULL) { 345 if ((*pos & EAP_TNC_VERSION_MASK) != EAP_TNC_VERSION) { 347 *pos & EAP_TNC_VERSION_MASK); 351 if (*pos & EAP_TNC_FLAGS_START) { 450 const u8 *pos, *end; local 456 pos = eap_hdr_validate(EAP_VENDOR_IETF, EAP_TYPE_TNC, respData, &len); 457 if (pos == NULL) 460 end = pos + len [all...] |
/cts/suite/audio_quality/lib/include/ |
StringUtil.h | 33 /// This function will return zero length string if pos is invalid. 34 static android::String8 substr(const android::String8& str, size_t pos, size_t n);
|
/external/chromium/base/i18n/ |
break_iterator.h | 49 // // region [iter.prev(),iter.pos()) contains a word. 78 size_t pos() const { return pos_; } function in class:base::BreakIterator 80 // Return the value of pos() returned before Advance() was last called. 95 // Return the string between prev() and pos(). 97 // for pos() to have advanced to somewhere useful.
|
/external/chromium_org/third_party/icu/source/i18n/ |
msgfmt_impl.h | 35 int32_t pos; member in class:FormatNameEnumeration
|
reldtfmt.h | 94 * @param pos The formatting position. On input: an alignment field, 101 FieldPosition& pos) const; 111 * @param pos On input: an alignment field, if desired. 119 FieldPosition& pos, 136 * @param pos On input, the position at which to start parsing; on 144 ParsePosition& pos) const; 159 * @param pos On input, the position at which to start parsing; on 166 ParsePosition& pos) const;
|
/external/chromium_org/third_party/icu/source/i18n/unicode/ |
fpositer.h | 110 int32_t pos; member in class:FieldPositionIterator
|
/external/chromium_org/third_party/icu/source/test/intltest/ |
tokiter.h | 67 int32_t pos; member in class:TokenIterator
|
/external/chromium_org/v8/src/ |
ast.h | 384 Expression(Isolate* isolate, int pos) 385 : AstNode(pos), 473 int pos, 475 : BreakableStatement(isolate, labels, TARGET_FOR_NAMED_ONLY, pos), 500 int pos) 501 : AstNode(pos), 529 int pos) 530 : Declaration(proxy, mode, scope, pos) { 550 int pos) 551 : Declaration(proxy, mode, scope, pos), [all...] |
gdb-jit.h | 70 void SetPosition(intptr_t pc, int pos, bool is_statement) { 71 AddPCInfo(PCInfo(pc, pos, is_statement)); 75 PCInfo(intptr_t pc, int pos, bool is_statement) 76 : pc_(pc), pos_(pos), is_statement_(is_statement) { }
|
/external/chromium_org/webkit/browser/database/ |
database_util.cc | 78 std::string::size_type pos = origin_identifier.find(dotdot); local 79 if (pos == std::string::npos) 80 pos = origin_identifier.find_first_of(forbidden, 0, arraysize(forbidden)); 82 return pos == std::string::npos;
|
/external/doclava/src/com/google/doclava/ |
DocInfo.java | 109 int pos = 0; local 111 data.setValue(base + ".federated." + pos + ".url", source.linkFor(htmlPage())); 112 data.setValue(base + ".federated." + pos + ".name", source.name()); 113 pos++;
|
/external/icu4c/i18n/ |
msgfmt_impl.h | 35 int32_t pos; member in class:FormatNameEnumeration
|
numsys_impl.h | 35 int32_t pos; member in class:NumsysNameEnumeration
|
region_impl.h | 35 int32_t pos; member in class:RegionNameEnumeration
|
reldtfmt.h | 96 * @param pos The formatting position. On input: an alignment field, 103 FieldPosition& pos) const; 113 * @param pos On input: an alignment field, if desired. 121 FieldPosition& pos, 138 * @param pos On input, the position at which to start parsing; on 146 ParsePosition& pos) const; 161 * @param pos On input, the position at which to start parsing; on 168 ParsePosition& pos) const;
|
/external/icu4c/i18n/unicode/ |
compactdecimalformat.h | 116 * @param pos On input: an alignment field, if desired. 123 FieldPosition& pos) const; 150 * @param pos On input: an alignment field, if desired. 157 FieldPosition& pos) const; 228 * @param pos On input: an alignment field, if desired. 236 FieldPosition& pos, 277 * @param pos input-output position; on input, the position within text 278 * to match; must have 0 <= pos.getIndex() < text.length(); 287 ParsePosition& pos) const;
|
/external/icu4c/test/intltest/ |
tokiter.h | 67 int32_t pos; member in class:TokenIterator
|
/external/libppp/src/ |
iplist.h | 31 int pos; member in struct:iplist_cur
|
/external/libvpx/libvpx/vp8/encoder/ |
boolhuff.h | 30 unsigned int pos; member in struct:__anon21239 102 int x = br->pos - 1; 113 validate_buffer(br->buffer + br->pos, 1, br->buffer_end, br->error); 114 br->buffer[br->pos++] = (lowvalue >> (24 - offset));
|
/external/linux-tools-perf/util/ui/browsers/ |
annotate.c | 121 struct objdump_line *pos; local 127 pos = ((struct objdump_line *)rbpos) - 1; 131 pos = list_entry(pos->node.prev, struct objdump_line, node); 137 self->b.top = pos; 146 struct objdump_line *pos; local 152 list_for_each_entry(pos, ¬es->src->source, node) { 153 struct objdump_line_rb_node *rbpos = objdump_line__rb(pos); 154 rbpos->percent = objdump_line__calc_percent(pos, sym, evidx); 257 struct objdump_line *pos, *n local [all...] |
/external/oprofile/daemon/liblegacy/ |
opd_proc.c | 89 struct list_head * pos, *pos2; local 92 list_for_each_safe(pos, pos2, &opd_procs[hash]) { 94 proc = list_entry(pos, struct opd_proc, next); 167 struct list_head * pos; local 172 list_for_each(pos, &proc->maps) { 173 struct opd_map * map = list_entry(pos, struct opd_map, next); 242 struct list_head * pos; local 267 list_for_each(pos, &old->maps) { 268 struct opd_map * map = list_entry(pos, struct opd_map, next); 343 struct list_head * pos; local 416 struct list_head * pos, * pos2; local [all...] |