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

<<121122123124125126127128129130>>

  /external/mesa3d/src/gallium/auxiliary/draw/
draw_pipe_clip.c 143 const float *pos = dst->pre_clip_pos; local
146 const float oow = 1.0f / pos[3];
148 dst->data[pos_attr][0] = pos[0] * oow * scale[0] + trans[0];
149 dst->data[pos_attr][1] = pos[1] * oow * scale[1] + trans[1];
150 dst->data[pos_attr][2] = pos[2] * oow * scale[2] + trans[2];
  /external/openssh/openbsd-compat/
bsd-snprintf.c 169 #define DOPR_OUTCH(buf, pos, buflen, thechar) \
171 if (pos + 1 >= INT_MAX) { \
175 if (pos < buflen) \
176 buf[pos] = thechar; \
177 (pos)++; \
  /external/v8/src/ia32/
assembler-ia32.cc 156 next = L->pos();
379 ASSERT(pc_ <= reloc_info_writer.pos()); // No overlap.
384 desc->reloc_size = (buffer_ + buffer_size_) - reloc_info_writer.pos();
1322 // generated code. pos() is the position the label refers to.
1325 // to be generated; pos() is the position of the 32bit
1333 PrintF("bound label to %d\n", L->pos());
1339 PrintF("@ %d ", l.pos());
1345 PrintF("label in inconsistent state (pos = %d)\n", L->pos_);
1350 void Assembler::bind_to(Label* L, int pos) {
1352 ASSERT(0 <= pos && pos <= pc_offset()); // must have a valid binding positio
    [all...]
  /external/wpa_supplicant_8/src/drivers/
driver_atheros.c 1212 char *pos; local
1410 char *pos, *end, *custom, *buf; local
2064 u8 *data, *pos; local
    [all...]
  /external/zlib/src/test/
example.c 125 z_off_t pos;
162 pos = gzseek(file, -8L, SEEK_CUR);
163 if (pos != 6 || gztell(file) != pos) {
164 fprintf(stderr, "gzseek error, pos=%ld, gztell=%ld\n",
165 (long)pos, (long)gztell(file));
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
bitstream.cpp 529 PV_STATUS movePointerTo(BitstreamDecVideo *stream, int32 pos)
532 if (pos < 0)
534 pos = 0;
537 byte_pos = pos >> 3;
551 PV_BitstreamFlushBits(stream, ((pos & 0x7) + ((byte_pos & 0x3) << 3)));
803 if (tmpvar & 1) // Check if the 17th bit from the curr bit pos is a '1'
892 if (tmpvar & 1) // Check if the 17th bit from the curr bit pos is a '1'
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.modifiers/string_replace/
size_size_pointer.pass.cpp 13 // replace(size_type pos, size_type n1, const charT* s);
26 test(S s, typename S::size_type pos, typename S::size_type n1,
33 s.replace(pos, n1, str);
35 assert(pos <= old_size);
37 typename S::size_type xlen = std::min(n1, old_size - pos);
43 assert(pos > old_size);
size_size_size_char.pass.cpp 13 // replace(size_type pos, size_type n1, size_type n2, charT c);
24 test(S s, typename S::size_type pos, typename S::size_type n1,
32 s.replace(pos, n1, n2, c);
34 assert(pos <= old_size);
36 typename S::size_type xlen = std::min(n1, old_size - pos);
42 assert(pos > old_size);
  /packages/apps/Launcher3/src/com/android/launcher3/
Cling.java 154 Rect pos = hotseat.getCellCoordinates(x, y); local
159 mFocusedHotseatAppBounds = new Rect(pos.left, pos.top,
160 pos.left + Utilities.sIconTextureWidth,
161 pos.top + Utilities.sIconTextureHeight);
  /packages/apps/Settings/src/com/android/settings/applications/
AppOpsState.java 313 AppOpsManager.OpEntry pos = list.get(i); local
314 if (pos.isRunning() != op.isRunning()) {
321 if (pos.getTime() < op.getTime()) {
353 public AppOpsManager.OpEntry getOpEntry(int pos) {
354 return mOps.get(pos);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/
FusionDictionary.java 842 public Iterator<PtNode> pos; field in class:FusionDictionary.DictionaryIterator.Position
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
aetypes.py 61 def __init__(self, of, pos):
63 self.pos = pos
66 return "InsertionLoc(%r, %r)" % (self.of, self.pos)
69 rec = {'kobj': self.of, 'kpos': self.pos}
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/resources/platform/
AttrsXmlParser.java 685 int pos = comment.indexOf("{@deprecated"); local
686 if (pos >= 0) {
687 comment = comment.substring(pos + 12 /* len of {@deprecated */);
689 } else if ((pos = comment.indexOf("@deprecated")) >= 0) {
690 comment = comment.substring(pos + 11 /* len of @deprecated */);
  /external/v8/src/arm/
assembler-arm.cc 359 desc->reloc_size = (buffer_ + buffer_size_) - reloc_info_writer.pos();
542 // generated code. pos() is the position the label refers to.
545 // to be generated; pos() is the position of the last
553 int Assembler::target_at(int pos) {
554 Instr instr = instr_at(pos);
566 return pos + kPcLoadDelta + imm26;
570 void Assembler::target_at_put(int pos, int target_pos) {
571 Instr instr = instr_at(pos);
576 instr_at_put(pos, target_pos + (Code::kHeaderSize - kHeapObjectTag));
579 int imm26 = target_pos - (pos + kPcLoadDelta)
    [all...]
  /external/wpa_supplicant_8/src/p2p/
p2p.c 3524 char *pos, *end; local
    [all...]
  /external/chromium/chrome/browser/accessibility/
browser_accessibility_win.cc 1234 LONG pos; local
1238 pos = result;
1242 pos = result - 1;
1247 if (IsWhitespace(text[pos]))
1252 if (text[pos] == '\n')
1258 if ((text[pos] == '.' || text[pos] == '!' || text[pos] == '?') &&
1259 (pos == text_size - 1 || IsWhitespace(text[pos + 1])))
    [all...]
  /external/chromium_org/sync/syncable/
directory.cc 1219 UniquePosition pos = UniquePosition::InitialPosition(suffix); local
1228 UniquePosition pos; local
1256 UniquePosition pos = UniquePosition::After( local
1271 UniquePosition pos = UniquePosition::Between( local
    [all...]
  /external/libpng/
pngtest.c 222 int pos = 0; local
228 if (((*dp << pos++ ) & 0x80) == 0)
230 if (pos == 8)
232 pos = 0;
238 if (((*dp << (pos+=2)) & 0xc0) == 0)
240 if (pos == 8)
242 pos = 0;
248 if (((*dp << (pos+=4)) & 0xf0) == 0)
250 if (pos == 8)
252 pos = 0
    [all...]
  /external/lzma/CPP/7zip/Archive/7z/
7zIn.cpp 339 for (UInt32 pos = 0; pos < numTests; pos++)
341 for (; buffer[pos] != '7' && pos < numTests; pos++);
342 if (pos == numTests)
344 if (TestSignature(buffer + pos))
346 memcpy(_header, buffer + pos, kHeaderSize);
347 curTestPos += pos;
    [all...]
  /external/stlport/test/unit/
string_test.cpp 505 string::size_type pos = 0, nb = 2; local
506 str1.insert(pos, nb, '1');
668 * size_type pos = 0) const;
671 * pos <= xpos and xpos + str.size() <= size();
829 int pos = 0; local
830 CPPUNIT_ASSERT( dest[pos++] == 'f' );
831 CPPUNIT_ASSERT( dest[pos++] == 'o' );
832 CPPUNIT_ASSERT( dest[pos++] == 'o' );
833 CPPUNIT_ASSERT( dest[pos++] == 1 );
837 pos = 0
    [all...]
  /external/wpa_supplicant_8/src/eap_server/
eap_server.c 380 const u8 *pos; local
399 pos = (const u8 *) (nak + 1);
401 if (*pos == EAP_TYPE_NAK) {
402 pos++;
404 nak_list = pos;
914 u8 *pos = (u8 *) (hdr + 1); local
915 sm->respMethod = *pos++;
923 sm->respVendor = WPA_GET_BE24(pos);
924 pos += 3;
925 sm->respVendorMethod = WPA_GET_BE32(pos);
    [all...]
eap_server_aka.c 654 const u8 *pos; local
657 pos = eap_hdr_validate(EAP_VENDOR_IETF, data->eap_method, respData,
659 if (pos == NULL || len < 3) {
1180 const u8 *pos, *end; local
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
string_test.cpp 505 string::size_type pos = 0, nb = 2; local
506 str1.insert(pos, nb, '1');
668 * size_type pos = 0) const;
671 * pos <= xpos and xpos + str.size() <= size();
829 int pos = 0; local
830 CPPUNIT_ASSERT( dest[pos++] == 'f' );
831 CPPUNIT_ASSERT( dest[pos++] == 'o' );
832 CPPUNIT_ASSERT( dest[pos++] == 'o' );
833 CPPUNIT_ASSERT( dest[pos++] == 1 );
837 pos = 0
    [all...]
  /ndk/tests/device/test-stlport/unit/
string_test.cpp 505 string::size_type pos = 0, nb = 2; local
506 str1.insert(pos, nb, '1');
668 * size_type pos = 0) const;
671 * pos <= xpos and xpos + str.size() <= size();
829 int pos = 0; local
830 CPPUNIT_ASSERT( dest[pos++] == 'f' );
831 CPPUNIT_ASSERT( dest[pos++] == 'o' );
832 CPPUNIT_ASSERT( dest[pos++] == 'o' );
833 CPPUNIT_ASSERT( dest[pos++] == 1 );
837 pos = 0
    [all...]
  /external/robolectric/lib/main/
xpp3-1.1.4c.jar 

Completed in 935 milliseconds

<<121122123124125126127128129130>>