Searched defs:position (Results 1 - 25 of 997) sorted by last modified time

1234567891011>>

/external/zxing/core/
H A Dcore.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/zxing/ com/google/zxing/aztec/ ...
/external/yaffs2/yaffs2/direct/
H A Dyaffsfs.c48 __u32 position; // current position in file member in struct:__anon34306
449 h->position = 0;
529 pos= h->position;
550 h->position = pos + nRead;
600 pos = h->position;
607 h->position = pos + nWritten;
675 if( (h->position + offset) >= 0)
677 pos = (h->position + offset);
691 h->position
[all...]
/external/webrtc/src/common_audio/vad/
H A Dvad_sp.c63 int position = -1; local
96 // |low_value_vector|. If so, find the |position| where to insert the new
102 position = 0;
104 position = 1;
107 position = 2;
109 position = 3;
113 position = 4;
115 position = 5;
118 position = 6;
120 position
[all...]
/external/webrtc/src/modules/audio_processing/aec/
H A Daec_resampler.c28 float position; member in struct:__anon33472
56 obj->position = 0.0;
102 tnew = be * mm + obj->position;
120 tnew = be * mm + obj->position;
125 obj->position += outsize * be - size;
/external/valgrind/main/mpi/
H A Dlibmpiwrap.c1797 /* pre: must be readable: position
1800 must be writable: outbuf[*position ..
1801 *position - 1
1804 post: make readable: outbuf[old *position .. new *position]
1808 int* position, MPI_Comm comm )
1812 int position_ORIG = *position;
1816 check_mem_is_defined_untyped(position, sizeof(*position));
1830 CALL_FN_W_7W(err, fn, inbuf,incount,datatype, outbuf,outsize,position, com
1806 PMPI_Pack( void* inbuf, int incount, MPI_Datatype datatype, void* outbuf, int outsize, int* position, MPI_Comm comm ) argument
1855 PMPI_Unpack( void* inbuf, int insize, int* position, void* outbuf, int outcount, MPI_Datatype datatype, MPI_Comm comm ) argument
[all...]
/external/tremolo/Tremolo/
H A Dbitwise.c374 int getbyte(ogg_reference *or,int position){ argument
375 while(or && position>=or->length){
376 position-=or->length;
384 if((position+or->begin)&1)
385 return (or->buffer->data[(position+or->begin)>>1])&0xff;
387 return (or->buffer->data[(position+or->begin)>>1]>>8)&0xff;
/external/srec/portable/src/
H A DPANSIFileImpl.c286 ESR_ReturnCode PANSIFileGetPositionImpl(PFile* self, size_t* position) argument
312 *position = pos;
346 long posCur; /* remember current file position */
347 long posEnd; /* end of file position */
353 fseek(impl->value, posCur, SEEK_SET); /* restore position in file */
H A DPFile.c99 ESR_ReturnCode PFileGetPosition(PFile* self, size_t* position) argument
106 return self->getPosition(self, position);
/external/srec/tools/parseStringTest/
H A DparseStringTest.c450 LCHAR* position; local
458 position = pfgets(line, MAX_LINE_LENGTH, fin);
463 if (position == NULL)
475 if ((position = strtok(line, "\"")) != NULL)
477 LSTRCPY(trans, position);
487 if ((position = strtok(NULL, " \t")) != NULL)
489 LSTRCPY(key, position);
499 if ((position = strtok(NULL, "\"")) != NULL)
501 LSTRCPY(refValue, position);
512 if ((position
538 LCHAR *position, *p; local
[all...]
/external/sonivox/arm-hybrid-22k/host_src/
H A Deas_hostmm.c79 * the file size and read position.
419 EAS_RESULT EAS_HWFileSeek (EAS_HW_DATA_HANDLE hwInstData, EAS_FILE_HANDLE file, EAS_I32 position) argument
426 /* validate new position */
427 if ((position < 0) || (position > file->fileSize))
430 /* save new position */
431 file->filePos = position;
439 * Seek forward or back relative to the current position
444 EAS_RESULT EAS_HWFileSeekOfs (EAS_HW_DATA_HANDLE hwInstData, EAS_FILE_HANDLE file, EAS_I32 position) argument
451 /* determine the file position */
[all...]
/external/sonivox/arm-wt-22k/host_src/
H A Deas_hostmm.c84 * the file size and read position.
449 EAS_RESULT EAS_HWFileSeek (EAS_HW_DATA_HANDLE hwInstData, EAS_FILE_HANDLE file, EAS_I32 position) argument
456 /* validate new position */
457 if ((position < 0) || (position > file->fileSize))
460 /* save new position */
461 file->filePos = position;
469 * Seek forward or back relative to the current position
474 EAS_RESULT EAS_HWFileSeekOfs (EAS_HW_DATA_HANDLE hwInstData, EAS_FILE_HANDLE file, EAS_I32 position) argument
481 /* determine the file position */
[all...]
/external/sonivox/arm-wt-22k/jetcreator_lib_src/darwin-x86/
H A DEASLib.c68 * the file size and read position.
899 EAS_ReportX(_EAS_SEVERITY_NOFILTER, "EAS_HWReadFile: Reading %d bytes from position %d\n", n, file->filePos);
931 /* position the file pointer */
995 EAS_ReportX(_EAS_SEVERITY_NOFILTER, "EAS_HWGetByte: Reading from position %d, byte = 0x%02x\n", file->filePos, *(EAS_U8*)p);
1016 EAS_ReportX(_EAS_SEVERITY_NOFILTER, "EAS_HWGetWord: Reading 2 bytes from position %d\n", file->filePos);
1046 EAS_ReportX(_EAS_SEVERITY_NOFILTER, "EAS_HWGetDWord: Reading 4 bytes from position %d\n", file->filePos);
1091 EAS_RESULT EAS_HWFileSeek (EAS_HW_DATA_HANDLE hwInstData, EAS_FILE_HANDLE file, EAS_I32 position) argument
1100 if ((position < 0) || (position > file->fileSize))
1104 EAS_ReportX(_EAS_SEVERITY_NOFILTER, "EAS_HWFileSeek: Seeking to new position
1132 EAS_HWFileSeekOfs(EAS_HW_DATA_HANDLE hwInstData, EAS_FILE_HANDLE file, EAS_I32 position) argument
1544 EAS_HWFileSeek(EAS_HW_DATA_HANDLE hwInstData, EAS_FILE_HANDLE file, EAS_I32 position) argument
1573 EAS_HWFileSeekOfs(EAS_HW_DATA_HANDLE hwInstData, EAS_FILE_HANDLE file, EAS_I32 position) argument
[all...]
H A DEASLibVst.c66 * the file size and read position.
594 EAS_ReportX(_EAS_SEVERITY_NOFILTER, "EAS_HWReadFile: Reading %d bytes from position %d\n", n, file->filePos);
626 /* position the file pointer */
690 EAS_ReportX(_EAS_SEVERITY_NOFILTER, "EAS_HWGetByte: Reading from position %d, byte = 0x%02x\n", file->filePos, *(EAS_U8*)p);
711 EAS_ReportX(_EAS_SEVERITY_NOFILTER, "EAS_HWGetWord: Reading 2 bytes from position %d\n", file->filePos);
741 EAS_ReportX(_EAS_SEVERITY_NOFILTER, "EAS_HWGetDWord: Reading 4 bytes from position %d\n", file->filePos);
786 EAS_RESULT EAS_HWFileSeek (EAS_HW_DATA_HANDLE hwInstData, EAS_FILE_HANDLE file, EAS_I32 position) argument
795 if ((position < 0) || (position > file->fileSize))
799 EAS_ReportX(_EAS_SEVERITY_NOFILTER, "EAS_HWFileSeek: Seeking to new position
827 EAS_HWFileSeekOfs(EAS_HW_DATA_HANDLE hwInstData, EAS_FILE_HANDLE file, EAS_I32 position) argument
1239 EAS_HWFileSeek(EAS_HW_DATA_HANDLE hwInstData, EAS_FILE_HANDLE file, EAS_I32 position) argument
1268 EAS_HWFileSeekOfs(EAS_HW_DATA_HANDLE hwInstData, EAS_FILE_HANDLE file, EAS_I32 position) argument
[all...]
/external/sonivox/arm-wt-22k/misc/
H A Deas_host.c18 * buffer, the position of the next byte of data to be read, the dup
320 EAS_ReportX(_EAS_SEVERITY_NOFILTER, "EAS_HWReadFile: Reading %d bytes from position %d\n", n, file->filePos);
352 /* position the file pointer */
417 EAS_ReportX(_EAS_SEVERITY_NOFILTER, "EAS_HWGetByte: Reading from position %d, byte = 0x%02x\n", file->filePos, *(EAS_U8*)p);
438 EAS_ReportX(_EAS_SEVERITY_NOFILTER, "EAS_HWGetWord: Reading 2 bytes from position %d\n", file->filePos);
468 EAS_ReportX(_EAS_SEVERITY_NOFILTER, "EAS_HWGetDWord: Reading 4 bytes from position %d\n", file->filePos);
513 EAS_RESULT EAS_HWFileSeek (EAS_HW_DATA_HANDLE hwInstData, EAS_FILE_HANDLE file, EAS_I32 position) argument
522 EAS_ReportX(_EAS_SEVERITY_NOFILTER, "EAS_HWFileSeek: Seeking to new position %d\n", file->filePos);
525 /* is new position in current buffer? */
526 newIndex = position
550 EAS_HWFileSeekOfs(EAS_HW_DATA_HANDLE hwInstData, EAS_FILE_HANDLE file, EAS_I32 position) argument
[all...]
/external/skia/platform_tools/nacl/src/
H A Dnacl_debugger.cpp154 virtual void DidChangeView(const pp::Rect& position, const pp::Rect& clip) { argument
155 if (position.size().width() == fWidth &&
156 position.size().height() == fHeight) {
157 return; // We don't care about the position, only the size.
159 fWidth = position.size().width();
160 fHeight = position.size().height();
H A Dnacl_hello.cpp86 virtual void DidChangeView(const pp::Rect& position, const pp::Rect& clip) { argument
87 if (position.size().width() == fWidth &&
88 position.size().height() == fHeight) {
89 return; // We don't care about the position, only the size.
91 fWidth = position.size().width();
92 fHeight = position.size().height();
H A Dnacl_sample.cpp56 virtual void DidChangeView(const pp::Rect& position, argument
58 if (position.size().width() == width() &&
59 position.size().height() == height()) {
64 CreateContext(position.size());
73 fWindow->resize(position.size().width(), position.size().height());
/external/skia/src/core/
H A DSkStream.cpp278 bool SkFILEStream::seek(size_t position) { argument
279 return sk_fseek(fFILE, position);
406 bool SkMemoryStream::seek(size_t position) { argument
407 fOffset = position > fData->size()
409 : position;
741 virtual bool seek(size_t position) SK_OVERRIDE {
743 if (position >= fOffset) {
744 size_t skipAmount = position - fOffset;
748 size_t moveBackAmount = fOffset - position;
755 return this->rewind() && this->skip(position)
[all...]
/external/skia/src/effects/
H A DSkAlphaThresholdFilter.cpp339 SkPoint position; local
340 localInverse.mapXY((SkScalar)x, (SkScalar)y, &position);
341 if (fRegion.contains((int32_t)position.x(), (int32_t)position.y())) {
/external/skia/src/utils/win/
H A DSkDWriteFontFileStream.cpp95 bool SkDWriteFontFileStream::seek(size_t position) { argument
97 fPos = (position > length) ? length : position;
/external/skia/tests/
H A DPathMeasureTest.cpp114 SkPoint position; local
116 REPORTER_ASSERT(reporter, meas.getPosTan(SK_ScalarHalf, &position, &tangent));
118 SkScalarNearlyEqual(position.fX,
121 REPORTER_ASSERT(reporter, position.fY == 0);
141 REPORTER_ASSERT(reporter, meas.getPosTan(SK_ScalarHalf, &position, &tangent));
143 SkScalarNearlyEqual(position.fX,
146 REPORTER_ASSERT(reporter, position.fY == 0);
149 REPORTER_ASSERT(reporter, meas.getPosTan(2.5f, &position, &tangent));
151 SkScalarNearlyEqual(position.fX, SK_Scalar1, 0.0001f));
153 SkScalarNearlyEqual(position
[all...]
/external/smack/asmack-master/lib/
H A Dhttpclient-4.1.3.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/http/ org/apache/http/cookie/ ...
H A Dxpp3-1.1.4c.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/services/ META-INF/services/org. ...
/external/smack/src/org/jivesoftware/smack/util/
H A DBase64.java381 // 01234567890123456789012345678901 Bit position
382 // --------000000001111111122222222 Array position from threeBytes
1228 private int position; // Current position in the buffer field in class:Base64.InputStream
1279 this.position = -1;
1296 if( position < 0 )
1328 position = 0;
1358 position = 0;
1373 if( position >= 0 )
1376 if( /*!encode &&*/ position >
1464 private int position; field in class:Base64.OutputStream
[all...]
/external/smack/src/org/jivesoftware/smackx/workgroup/
H A DQueueUser.java41 * @param position the position customer sits in the queue
45 public QueueUser (String uid, int position, int time, Date joinedAt) { argument
49 this.queuePosition = position;
62 * @return the position in the queue at which the customer sits, or -1 if the update which
71 * if the update which this instance embodies is only a position update instead

Completed in 2313 milliseconds

1234567891011>>