HomeSort by relevance Sort by last modified time
    Searched refs:offsets (Results 201 - 225 of 950) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/particles/batches/
BufferedParticleBatch.java 72 * This method must use the calculated offsets to build the particles meshes.
73 * The offsets represent the position at which a particle should be placed into the vertex array.
74 * @param offsets the calculated offsets */
75 protected abstract void flush(int[] offsets);
  /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);
  /toolchain/binutils/binutils-2.25/binutils/testsuite/binutils-all/
testranges.s 2 # offsets strictly as increasing.
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mips/
24k-triple-stores-8.s 1 # Range check after alignment between adjacent offsets >= 24 ??
  /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 );
398 if ( idx->offsets == NULL )
416 /* at this point, `idx->offsets' can't be NULL */
417 cur_offset = idx->offsets[0] - 1;
435 FT_ULong next_offset = idx->offsets[n] - 1
    [all...]
  /external/freetype/src/sfnt/
ttpost.c 363 table->offsets = offset_table;
449 FT_FREE( table->offsets );
553 *PSname = MAC_NAME( (FT_Int)idx + table->offsets[idx] );
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
JavaTimeZone.java 117 public void getOffset(long date, boolean local, int[] offsets) {
148 // In this case, we use the offsets before the transition
154 offsets[0] = javacal.get(java.util.Calendar.ZONE_OFFSET);
155 offsets[1] = javacal.get(java.util.Calendar.DST_OFFSET);
  /external/icu/icu4c/source/test/intltest/
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;
convtest.cpp 136 cc.offsets=testCase->getIntVector(offsetsLength, "offsets", errorCode);
138 cc.offsets=NULL;
140 errln("toUnicode[%d] unicode[%d] and offsets[%d] must have the same length",
258 cc.offsets=testCase->getIntVector(offsetsLength, "offsets", errorCode);
260 cc.offsets=NULL;
262 errln("fromUnicode[%d] bytes[%d] and offsets[%d] must have the same length",
822 printOffsets(const int32_t *offsets, int32_t length, char *out) {
825 if(offsets==NULL)
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
JavaTimeZone.java 115 public void getOffset(long date, boolean local, int[] offsets) {
146 // In this case, we use the offsets before the transition
152 offsets[0] = javacal.get(java.util.Calendar.ZONE_OFFSET);
153 offsets[1] = javacal.get(java.util.Calendar.DST_OFFSET);
  /external/icu/icu4j/main/classes/localespi/src/com/ibm/icu/impl/icuadapter/
TimeZoneJDK.java 109 public void getOffset(long date, boolean local, int[] offsets) {
143 // In this case, we use the offsets before the transition
149 offsets[0] = fJdkCal.get(java.util.Calendar.ZONE_OFFSET);
150 offsets[1] = fJdkCal.get(java.util.Calendar.DST_OFFSET);
  /external/libchrome/base/strings/
string_util.cc 889 std::vector<size_t>* offsets) {
920 if (offsets) {
937 if (offsets) {
939 offsets->push_back(cur.offset);
946 std::vector<size_t>* offsets) {
947 return DoReplaceStringPlaceholders(format_string, subst, offsets);
952 std::vector<size_t>* offsets) {
953 return DoReplaceStringPlaceholders(format_string, subst, offsets);
959 std::vector<size_t> offsets; local
962 string16 result = ReplaceStringPlaceholders(format_string, subst, &offsets);
    [all...]
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/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 );
396 if ( idx->offsets == NULL )
413 /* at this point, `idx->offsets' can't be NULL */
414 cur_offset = idx->offsets[0] - 1;
432 FT_ULong next_offset = idx->offsets[n] - 1
    [all...]
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/sfnt/
ttpost.c 363 table->offsets = offset_table;
449 FT_FREE( table->offsets );
553 *PSname = MAC_NAME( (FT_Int)idx + table->offsets[idx] );
  /external/llvm/test/MC/ARM/
eh-directive-pad.s 4 @ Check for different stack pointer offsets.
6 @ The .pad directive will track the stack pointer offsets. There are several
7 @ ways to encode the stack offsets. We have to test:
  /external/mesa3d/src/gallium/state_trackers/xorg/
xorg_xv.c 249 int *pitches, int *offsets)
259 if (offsets)
260 offsets[0] = 0;
270 if (offsets) {
271 offsets[1] = size;
279 if (offsets) {
280 offsets[2] = size;
336 int pitches[3], offsets[3]; local
339 &w, &h, pitches, offsets);
341 y = buf + offsets[0]
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_shader.cpp 308 signed char offsets[3]; local
310 offsets[i] = (signed char) offset->value.i[i];
312 /* Combine all three offsets into a single unsigned dword:
321 offset_bits |= (offsets[i] << shift) & (0xF << shift);
  /external/pdfium/third_party/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 );
396 if ( idx->offsets == NULL )
413 /* at this point, `idx->offsets' can't be NULL */
414 cur_offset = idx->offsets[0] - 1;
432 FT_ULong next_offset = idx->offsets[n] - 1
    [all...]
  /external/pdfium/third_party/freetype/src/sfnt/
ttpost.c 363 table->offsets = offset_table;
449 FT_FREE( table->offsets );
553 *PSname = MAC_NAME( (FT_Int)idx + table->offsets[idx] );
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/
CollationElementIteratorTest.java 48 int[] offsets = { 0, 1, 2, 3 }; local
51 assertEquals(offsets[i++], offset);
55 assertEquals(offsets[i++], offset);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/
SentenceLevelAdapter.java 177 final int[] offsets = new int[querySize];
191 offsets[i] = item.mStart;
195 return new SentenceSuggestionsInfo(reconstructedSuggestions, offsets, lengths);
  /hardware/intel/img/psb_video/src/
psb_output.c 320 obj_image->image.offsets[0] = 0;
321 obj_image->image.offsets[1] = pitch_pot * height;
380 obj_image->image.offsets[0] = 0;
381 obj_image->image.offsets[1] = pitch_pot * height;
382 obj_image->image.offsets[2] = pitch_pot * height + (pitch_pot / 2) * (height / 2);
400 obj_image->image.offsets[0] = 0;
401 obj_image->image.offsets[1] = pitch_pot * height;
402 obj_image->image.offsets[2] = pitch_pot * height * 2;
551 obj_image->image.offsets[0] = srf_buf_ofs;
552 obj_image->image.offsets[1] = srf_buf_ofs + obj_surface->height * obj_surface->psb_surface->stride
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/util/
BasicTimeZone.java 64 * offsets and DST savings used by this time zone match the other in the
83 * offsets and DST savings used by this time zone match the other in the
109 // Check the offsets at the start time
467 // second rule raw/dst offsets should match raw/dst offsets
502 // No transitions in the past. Just use the current offsets
503 int[] offsets = new int[2]; local
504 getOffset(date, false, offsets);
505 initialRule = new InitialTimeZoneRule(getID(), offsets[0], offsets[1])
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
BasicTimeZone.java 67 * offsets and DST savings used by this time zone match the other in the
88 * offsets and DST savings used by this time zone match the other in the
116 // Check the offsets at the start time
480 // second rule raw/dst offsets should match raw/dst offsets
515 // No transitions in the past. Just use the current offsets
516 int[] offsets = new int[2]; local
517 getOffset(date, false, offsets);
518 initialRule = new InitialTimeZoneRule(getID(), offsets[0], offsets[1])
    [all...]
  /external/icu/icu4c/source/common/
ucnv_ext.cpp 237 int32_t **offsets, int32_t srcIndex,
245 offsets, srcIndex,
255 offsets, srcIndex,
280 int32_t **offsets, int32_t srcIndex,
300 offsets, srcIndex,
395 &pArgs->offsets, srcIndex,
672 int32_t **offsets, int32_t srcIndex,
736 offsets, srcIndex,
748 int32_t **offsets, int32_t srcIndex,
773 offsets, srcIndex
    [all...]

Completed in 1529 milliseconds

1 2 3 4 5 6 7 891011>>