/libcore/luni/src/main/java/libcore/io/ |
BlockGuardOs.java | 152 @Override public int readv(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws ErrnoException { 154 return os.readv(fd, buffers, offsets, byteCounts); 194 @Override public int writev(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws ErrnoException { 196 return os.writev(fd, buffers, offsets, byteCounts);
|
/external/webkit/Tools/iExploder/iexploder-1.7.2/src/ |
iexploder.rb | 562 offsets = offsets_string.split(',').map! {|x| x.to_i } 563 return [lines_at_time.to_i, offsets] 659 width, offsets = parseSubTestData(@subtest_data) 661 width, offsets = nil 666 redirect_url = generateTestUrl(test_num, width, offsets) 677 width, offsets = combine_combo_creator(@config['html_tags_per_page'], width, offsets)[0..1] 679 redirect_url = generateTestUrl(nextTestNum(), width, offsets) 710 (width, offsets) = parseSubTestData(@subtest_data) 711 lines = combine_combo_creator(tag_count, width, offsets)[2 [all...] |
browser_harness.rb | 230 (width, offsets) = @ie.parseSubTestData(subtest_data) 232 (width, offsets, lines) = combine_combo_creator(@ie.config['html_tags_per_page'], width, offsets) 233 return @ie.generateTestUrl(@ie.nextTestNum(), width, offsets)
|
/external/icu4c/test/intltest/ |
convtest.cpp | 135 cc.offsets=testCase->getIntVector(offsetsLength, "offsets", errorCode); 137 cc.offsets=NULL; 139 errln("toUnicode[%d] unicode[%d] and offsets[%d] must have the same length", 257 cc.offsets=testCase->getIntVector(offsetsLength, "offsets", errorCode); 259 cc.offsets=NULL; 261 errln("fromUnicode[%d] bytes[%d] and offsets[%d] must have the same length", 748 printOffsets(const int32_t *offsets, int32_t length, char *out) { 751 if(offsets==NULL) [all...] |
trnserr.cpp | 134 errln("FAIL: The input string was modified though the offsets were out of bounds."); 265 virtual void handleTransliterate(Replaceable& ,UTransPosition& offsets,UBool) const { 266 offsets.start = offsets.limit;
|
/external/tremolo/Tremolo/ |
vorbisfile.c | 246 vf->offsets=_ogg_malloc((vf->links+1)*sizeof(*vf->offsets)); 248 vf->offsets[m+1]=searched; 256 vf->offsets[m]=begin; 351 _seek_helper(vf,vf->offsets[link]); 365 if(pos<vf->offsets[link] || pos>=vf->offsets[link+1]) 397 _seek_helper(vf,vf->offsets[i]); 457 ogg_int64_t end=vf->offsets[i+1]; 485 if(vf->offsets[i+1]>=vf->offset)break [all...] |
/external/webkit/Source/WebCore/platform/graphics/win/ |
UniscribeController.cpp | 241 Vector<GOFFSET> offsets; 243 offsets.resize(glyphs.size()); 247 &item.a, advances.data(), offsets.data(), 0); 255 &item.a, advances.data(), offsets.data(), 0); 294 float offsetX = offsets[k].du / cLogicalScale; 295 float offsetY = offsets[k].dv / cLogicalScale;
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/ |
multiway_mergesort.h | 83 /** @brief Offsets to add to the found positions. */ 84 difference_type* offsets; member in struct:__gnu_parallel::PMWMSSortingData 150 std::vector<SortingPlacesIterator> offsets(sd->num_threads); 155 sd->starts[iam + 1], offsets.begin(), comp); 161 sd->pieces[iam][seq].end = offsets[seq] - seqs[seq].first; 443 sd.offsets = new difference_type[num_threads - 1]; 470 delete[] sd.offsets;
|
/external/icu4c/common/ |
ucnv_ext.h | 351 int32_t **offsets, int32_t srcIndex, 371 int32_t **offsets, int32_t srcIndex,
|
ucnv_ext.c | 236 int32_t **offsets, int32_t srcIndex, 244 offsets, srcIndex, 254 offsets, srcIndex, 279 int32_t **offsets, int32_t srcIndex, 299 offsets, srcIndex, 394 &pArgs->offsets, srcIndex, 672 int32_t **offsets, int32_t srcIndex, 736 offsets, srcIndex, 748 int32_t **offsets, int32_t srcIndex, 773 offsets, srcIndex [all...] |
triedict.cpp | 360 uint16_t nodeCount; // Number of entries in offsets[] 362 uint32_t offsets[1]; // Offsets to nodes from start of data member in struct:CompactTrieHeader 461 return (const CompactTrieNode *)((const uint8_t *)header + header->offsets[node]); [all...] |
/external/mesa3d/docs/ |
MESA_agp_offset.spec | 36 region into byte offsets into the AGP aperture.
|
/ndk/sources/host-tools/sed-4.2.1/lib/ |
regex_internal.c | 150 if (pstr->offsets != NULL) 152 Idx *new_offsets = re_realloc (pstr->offsets, Idx, new_buf_len); 155 pstr->offsets = new_offsets; 404 if (pstr->offsets == NULL) 406 pstr->offsets = re_malloc (Idx, pstr->bufs_len); 408 if (pstr->offsets == NULL) 414 pstr->offsets[i] = i; 420 pstr->offsets[byte_idx] = src_idx; 423 pstr->offsets[byte_idx + i] 446 pstr->offsets[byte_idx + i] = src_idx + i [all...] |
/external/chromium/chrome/browser/notifications/ |
balloon_collection_impl.cc | 340 // Layout schemes that grow up from the bottom require offsets; 341 // schemes that grow down do not require offsets. 342 bool offsets = (placement_ == VERTICALLY_FROM_BOTTOM_LEFT || local 348 offsets = !offsets; 351 return offsets;
|
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/ |
localintermediate.h | 15 int offsets[4]; member in struct:TVectorFields
|
/external/webkit/Source/WebCore/platform/graphics/chromium/ |
ComplexTextControllerLinux.cpp | 41 // Harfbuzz uses 26.6 fixed point values for pixel offsets. However, we don't 234 delete[] m_item.offsets; 244 m_item.offsets = new HB_FixedPoint[size]; 262 memset(m_item.offsets, 0, size * sizeof(HB_FixedPoint)); 306 double offsetX = truncateFixedPointToInteger(m_item.offsets[i].x);
|
/frameworks/base/core/java/android/service/textservice/ |
SpellCheckerService.java | 422 final int[] offsets = new int[querySize]; local 436 offsets[i] = item.mStart; 443 : "<none>") + ", offset = " + offsets[i] + ", length = " 447 return new SentenceSuggestionsInfo(reconstructedSuggestions, offsets, lengths);
|
/external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/ |
CollationElementIteratorTest.java | 46 int[] offsets = { 0, 1, 2, 3 }; local 49 assertEquals(offsets[i++], offset); 53 assertEquals(offsets[i++], offset);
|
/external/chromium/base/ |
string_util.cc | 836 const std::vector<OutStringType>& subst, std::vector<size_t>* offsets) { 864 if (offsets) { 881 if (offsets) { 884 offsets->push_back(i->offset); 892 std::vector<size_t>* offsets) { 893 return DoReplaceStringPlaceholders(format_string, subst, offsets); 898 std::vector<size_t>* offsets) { 899 return DoReplaceStringPlaceholders(format_string, subst, offsets); 905 std::vector<size_t> offsets; 908 string16 result = ReplaceStringPlaceholders(format_string, subst, &offsets); [all...] |
/external/chromium/chrome/browser/autocomplete/ |
history_quick_provider.cc | 162 std::vector<size_t> offsets = local 166 UnescapeRule::SPACES, NULL, NULL, &offsets); 169 offsets);
|
/external/freetype/src/cff/ |
cffload.c | 294 FT_FREE( idx->offsets ); 312 FT_FREE( idx->offsets ); 326 if ( idx->count > 0 && idx->offsets == NULL ) 337 if ( FT_NEW_ARRAY( idx->offsets, idx->count + 1 ) || 342 poff = idx->offsets; 373 FT_FREE( idx->offsets ); 395 if ( idx->offsets == NULL ) 412 /* at this point, `idx->offsets' can't be NULL */ 413 cur_offset = idx->offsets[0] - 1; 431 FT_ULong next_offset = idx->offsets[n] - 1 [all...] |
/external/freetype/src/sfnt/ |
ttpost.c | 360 table->offsets = offset_table; 446 FT_FREE( table->offsets ); 551 idx += table->offsets[idx];
|
/external/icu4c/test/cintltst/ |
ncnvtst.c | 163 int32_t offsets[] = {0x00, 0x00, 0x01, 0x01, 0x03, 0x03 }; local 170 expected, sizeof(expected), "ibm-1363", offsets , TRUE, U_ZERO_ERROR)) 177 expected, sizeof(expected), "ibm-1363", offsets, TRUE, U_ZERO_ERROR)) 193 int32_t offsets[] = {0,0,0,0,0,1,1,2,2,2,2,3,5 }; 200 expected, sizeof(expected), "iso-2022-jp", offsets , TRUE, U_ZERO_ERROR)) 218 static const int32_t offsets[] = { 230 expected, sizeof(expected), "iso-2022-cn", offsets , TRUE, U_ZERO_ERROR)) 246 static const int32_t offsets[] = {-1, -1, -1, -1, 260 expected, sizeof(expected), "iso-2022-kr", offsets , TRUE, U_ZERO_ERROR)) 278 static const int32_t offsets[] = {0,0,0,0 local 299 static const int32_t offsets[]={0x00, 0x00, 0x00, 0x01, 0x01, 0x02, local 378 static const int32_t offsets[] = { 0x00, 0x00}; local 601 static const int32_t offsets[] = { 0x00, 0x00, 0x00, 1}; local 1542 static const int32_t offsets[] = {0x00, 0x00, 0x01, 0x01, 0x03, 0x03 }; local 1718 static const int32_t offsets[] = {0,0,0,0, local 1755 int32_t offsets[]={0x00, 0x00, 0x00, 0x01, 0x01, 0x02, local [all...] |
/external/webkit/Source/WebCore/platform/text/ |
TextCodecICU.cpp | 251 int TextCodecICU::decodeToBuffer(UChar* target, UChar* targetLimit, const char*& source, const char* sourceLimit, int32_t* offsets, bool flush, UErrorCode& err) 255 ucnv_toUnicode(m_converterICU, &target, targetLimit, &source, sourceLimit, offsets, flush, &err); 315 int32_t* offsets = NULL; local 319 int ucharsDecoded = decodeToBuffer(buffer, bufferLimit, source, sourceLimit, offsets, flush, err); 326 decodeToBuffer(buffer, bufferLimit, source, sourceLimit, offsets, true, err);
|
/external/freetype/src/base/ |
ftrfork.c | 154 FT_Long **offsets, 227 *offsets = offsets_internal; 362 FT_Long *offsets, 382 &(offsets[i]) ); 827 FT_Long *offsets, 840 offsets[i] = 0;
|