HomeSort by relevance Sort by last modified time
    Searched refs:pos (Results 3501 - 3525 of 4804) sorted by null

<<141142143144145146147148149150>>

  /external/chromium_org/v8/src/
handles.cc 418 for (int pos = 0; pos < len; pos++) {
419 if (pos == code_pos) {
422 if (source->Get(pos) == '\n') {
  /external/dropbear/libtomcrypt/src/ciphers/
anubis.c 900 int N, R, i, pos, r; local
1041 int i, pos, r; local
    [all...]
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/digest/
SHA1.java 187 private void putInt(byte[] b, int pos, int val)
189 b[pos] = (byte) (val >> 24);
190 b[pos + 1] = (byte) (val >> 16);
191 b[pos + 2] = (byte) (val >> 8);
192 b[pos + 3] = (byte) val;
  /external/icu4c/common/
rbbiscan.cpp     [all...]
  /external/linux-tools-perf/
builtin-top.c 1070 struct perf_evsel *pos; local
1132 list_for_each_entry(pos, &top.evlist->entries, node) {
1133 if (perf_evsel__alloc_fd(pos, top.evlist->cpus->nr,
1139 if (pos->attr.sample_period)
1142 pos->attr.sample_period = default_interval;
  /external/llvm/tools/bugpoint/
ToolRunner.cpp 415 std::string::size_type pos = CommandLine.find_first_of(delimiters, lastPos); local
417 while (std::string::npos != pos || std::string::npos != lastPos) {
418 std::string token = CommandLine.substr(lastPos, pos - lastPos);
424 lastPos = CommandLine.find_first_not_of(delimiters, pos);
426 pos = CommandLine.find_first_of(delimiters, lastPos);
    [all...]
  /external/mesa3d/src/mesa/program/
program.c 207 _mesa_set_program_error(struct gl_context *ctx, GLint pos, const char *string)
209 ctx->Program.ErrorPos = pos;
218 * Find the line number and column for 'pos' within 'string'.
219 * Return a copy of the line which contains 'pos'. Free the line with
222 * \param pos the position within the string
223 * \param line returns the line number corresponding to 'pos'.
224 * \param col returns the column number corresponding to 'pos'.
225 * \return copy of the line containing 'pos'.
228 _mesa_find_line_column(const GLubyte *string, const GLubyte *pos,
238 while (p != pos) {
    [all...]
  /external/mksh/src/
syn.c 412 te.pos.av = &args;
1021 XPput(*te->pos.av, save);
1036 XPput(*te->pos.av, yylval.cp);
1058 yylval.cp = *(XPptrv(*te->pos.av) + XPsize(*te->pos.av) +
  /external/opencv/cv/src/
cvcalibration.cpp     [all...]
  /external/protobuf/src/google/protobuf/stubs/
strutil.cc 113 string::size_type pos; local
115 pos = s.find(oldsub, start_pos);
116 if (pos == string::npos) {
119 res->append(s, start_pos, pos - start_pos);
121 start_pos = pos + oldsub.size(); // start searching again after the "old"
    [all...]
  /external/v8/src/
handles.cc 529 for (int pos = 0; pos < len; pos++) {
530 if (pos == code_pos) {
533 if (source->Get(pos) == '\n') {
    [all...]
messages.js 747 function GetStackTraceLine(recv, fun, pos, isGlobal) {
748 return FormatSourcePosition(new CallSite(recv, fun, pos));
777 function CallSite(receiver, fun, pos) {
780 this.pos = pos;
    [all...]
  /external/v8/src/ia32/
deoptimizer-ia32.cc 105 byte* pos_before = reloc_info_writer.pos();
109 pos_before - reloc_info_writer.pos());
162 ASSERT_GE(reloc_info_writer.pos(),
173 int new_reloc_size = reloc_end_address - reloc_info_writer.pos();
174 memmove(code->relocation_start(), reloc_info_writer.pos(), new_reloc_size);
    [all...]
  /external/wpa_supplicant_8/src/ap/
vlan_init.c 1033 char *ifname, *pos; local
1044 pos = os_strchr(ifname, '#');
1045 if (pos == NULL) {
1049 *pos++ = '\0';
1061 pos);
  /external/wpa_supplicant_8/wpa_supplicant/
ctrl_iface_unix.c 241 char *pos = buf; local
242 while (*pos) {
243 if (*pos == '\\')
244 *pos = '_';
245 pos++;
  /frameworks/av/media/libstagefright/httplive/
M3UParser.cpp 436 for (ssize_t pos = end - 1; pos >= 0; pos--) {
437 if (baseURL[pos] == '/') {
438 end = pos;
    [all...]
  /hardware/ti/omap3/omx/ti_omx_config_parser/src/
ti_m4v_config_parser.cpp 64 void movePointerTo(mp4StreamType *psBits, int32 pos)
67 if (pos < 0)
69 pos = 0;
72 byte_pos = pos >> 3;
81 FlushBits(psBits, ((pos & 0x7) + ((byte_pos & 0x3) << 3)));
    [all...]
  /packages/apps/Exchange/tests/src/com/android/exchange/utility/
CalendarUtilitiesTests.java 753 int pos = line.indexOf(':'); local
    [all...]
  /packages/apps/Settings/src/com/android/settings/widget/
SettingsAppWidgetProvider.java 202 int pos = getPosition(); local
209 indicatorId, IND_DRAWABLE_OFF[pos]);
216 indicatorId, IND_DRAWABLE_ON[pos]);
229 indicatorId, IND_DRAWABLE_MID[pos]);
235 indicatorId, IND_DRAWABLE_OFF[pos]);
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/address/parser/
AddressListParser.java 868 private void jj_add_error_token(int kind, int pos) {
869 if (pos >= 100) return;
870 if (pos == jj_endpos + 1) {
892 if (pos != 0) jj_lasttokens[(jj_endpos = pos) - 1] = kind;
  /external/libppp/src/
command.c 417 char *pos; local
420 pos = big;
423 while ((pos = strstr(pos, little)) != NULL)
424 if ((pos != big && isinword(pos[-1])) || isinword(pos[len]))
425 pos++;
426 else if (pos != big && pos[-1] == '\\'
439 int ltgt, loldstr, lnewstr, pos; local
    [all...]
  /external/opencv/cxcore/src/
cxdatastructs.cpp 323 cvSaveMemStoragePos( const CvMemStorage * storage, CvMemStoragePos * pos )
329 if( !storage || !pos )
332 pos->top = storage->top;
333 pos->free_space = storage->free_space;
341 cvRestoreMemStoragePos( CvMemStorage * storage, CvMemStoragePos * pos )
347 if( !storage || !pos )
349 if( pos->free_space > storage->block_size )
354 if( storage->parent && (!pos->top || pos->top->next) )
357 if( !pos->top
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/formats/
CameraFormatsActivity.java 218 View view, int pos, long id) {
219 if (mCurrentCameraId != pos) {
220 setUpCamera(pos);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/video/
CameraVideoActivity.java 326 View view, int pos, long id) {
327 if (mCurrentCameraId != pos) {
328 setUpCamera(pos);
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/
TestCaseEditController.java 593 int pos = text.indexOf('\n'); local
594 if(pos >= 0) {
595 return text.substring(0, pos).concat("...");

Completed in 674 milliseconds

<<141142143144145146147148149150>>