Searched refs:offsets (Results 26 - 50 of 481) sorted by relevance

1234567891011>>

/external/v8/tools/ignition/
H A Dlinux_perf_bytecode_annotate_test.py70 offsets = list(
72 self.assertListEqual(offsets, [18, 25, 18, 18])
/external/pdfium/core/fpdfapi/parser/
H A Dcpdf_parser_unittest.cpp91 const FX_FILESIZE offsets[] = {0, 15, 61, 154, 296, 374, 450}; local
93 for (size_t i = 0; i < FX_ArraySize(offsets); ++i)
94 EXPECT_EQ(offsets[i], parser.m_ObjectInfo[i].pos);
126 const FX_FILESIZE offsets[] = {0, 17, 81, 0, 331, 409}; local
128 for (size_t i = 0; i < FX_ArraySize(offsets); ++i) {
129 EXPECT_EQ(offsets[i], parser.m_ObjectInfo[i].pos);
151 const FX_FILESIZE offsets[] = {0, 0, 0, 25325, 0, 0, 0, local
154 for (size_t i = 0; i < FX_ArraySize(offsets); ++i) {
155 EXPECT_EQ(offsets[i], parser.m_ObjectInfo[i].pos);
177 const FX_FILESIZE offsets[] local
202 const FX_FILESIZE offsets[] = {0, 23, 0, 0, 0, 45, 179}; local
[all...]
/external/icu/icu4c/source/common/
H A Ducnvlat1.c39 int32_t *offsets; local
47 offsets=pArgs->offsets;
83 if(offsets!=NULL) {
85 offsets[0]=sourceIndex++;
86 offsets[1]=sourceIndex++;
87 offsets[2]=sourceIndex++;
88 offsets[3]=sourceIndex++;
89 offsets[4]=sourceIndex++;
90 offsets[
141 int32_t *offsets; local
475 int32_t *offsets; local
[all...]
H A Ducnv_u16.c55 int32_t *offsets; local
76 &pArgs->offsets, -1,
88 offsets=pArgs->offsets;
103 if(offsets!=NULL) {
104 *offsets++=-1;
105 *offsets++=-1;
106 *offsets++=-1;
107 *offsets++=-1;
124 if(offsets
259 int32_t *offsets; local
654 int32_t *offsets; local
858 int32_t *offsets; local
1330 int32_t *offsets=pArgs->offsets; local
[all...]
H A Ducnv_cnv.c52 int32_t **offsets,
59 if(offsets==NULL || (o=*offsets)==NULL) {
65 /* output with offsets */
71 *offsets=o;
92 int32_t **offsets,
99 if(offsets==NULL || (o=*offsets)==NULL) {
105 /* output with offsets */
111 *offsets
49 ucnv_fromUWriteBytes(UConverter *cnv, const char *bytes, int32_t length, char **target, const char *targetLimit, int32_t **offsets, int32_t sourceIndex, UErrorCode *pErrorCode) argument
89 ucnv_toUWriteUChars(UConverter *cnv, const UChar *uchars, int32_t length, UChar **target, const UChar *targetLimit, int32_t **offsets, int32_t sourceIndex, UErrorCode *pErrorCode) argument
129 ucnv_toUWriteCodePoint(UConverter *cnv, UChar32 c, UChar **target, const UChar *targetLimit, int32_t **offsets, int32_t sourceIndex, UErrorCode *pErrorCode) argument
[all...]
/external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
H A DCharsetBOCU1.java390 protected CoderResult encodeLoop(CharBuffer source, ByteBuffer target, IntBuffer offsets, boolean flush){ argument
418 labelType = fastSingle(source, target, offsets);
421 labelType = getTrail(source, target, offsets);
424 labelType = regularLoop(source, target, offsets);
432 private int fastSingle(CharBuffer source, ByteBuffer target, IntBuffer offsets){ argument
446 if(offsets!=null){
447 offsets.put(nextSourceIndex++);
456 if(offsets!=null){
457 offsets.put(nextSourceIndex++);
469 private int getTrail(CharBuffer source, ByteBuffer target, IntBuffer offsets){ argument
488 regularLoop(CharBuffer source, ByteBuffer target, IntBuffer offsets) argument
794 decodeLoop(ByteBuffer source, CharBuffer target, IntBuffer offsets, boolean flush) argument
844 fastSingle(ByteBuffer source, CharBuffer target, IntBuffer offsets) argument
883 getTrail(ByteBuffer source, CharBuffer target, IntBuffer offsets) argument
919 afterGetTrail(ByteBuffer source, CharBuffer target, IntBuffer offsets) argument
1037 endLoop(ByteBuffer source, CharBuffer target, IntBuffer offsets) argument
[all...]
H A DCharsetUTF7.java188 protected CoderResult decodeLoop(ByteBuffer source, CharBuffer target, IntBuffer offsets, boolean flush) { argument
246 if (offsets!= null) {
247 offsets.put(sourceIndex++);
355 if (offsets != null) {
356 offsets.put(sourceIndex);
374 if (offsets != null) {
375 offsets.put(sourceIndex);
393 if (offsets != null) {
394 offsets.put(sourceIndex);
411 if (offsets !
495 encodeLoop(CharBuffer source, ByteBuffer target, IntBuffer offsets, boolean flush) argument
[all...]
H A DCharsetSCSU.java61 /* use table of predefined fixed offsets for values from fixedThreshold */
67 /* constant offsets for the 8 static windows */
79 /* initial offsets for the 8 dynamic (sliding) windows */
114 /* dynamic window offsets, intitialize to default values from initialDynamicOffsets */
236 protected CoderResult decodeLoop(ByteBuffer source, CharBuffer target, IntBuffer offsets, argument
260 labelType = fastSingle(source, target, offsets, ByteMode);
264 labelType = singleByteMode(source, target, offsets, ByteMode);
267 endLoop(source, target, offsets);
274 labelType = fastSingle(source, target, offsets, UnicodeMode);
278 labelType = singleByteMode(source, target, offsets, UnicodeMod
290 fastSingle(ByteBuffer source, CharBuffer target, IntBuffer offsets, int modeType) argument
356 singleByteMode(ByteBuffer source, CharBuffer target, IntBuffer offsets, int modeType) argument
582 endLoop(ByteBuffer source, CharBuffer target, IntBuffer offsets) argument
645 encodeLoop(CharBuffer source, ByteBuffer target, IntBuffer offsets, boolean flush) argument
689 getWindow(int[] offsets) argument
767 loop(CharBuffer source, ByteBuffer target, IntBuffer offsets) argument
1052 getTrail(CharBuffer source, ByteBuffer target, IntBuffer offsets) argument
1077 getTrailUnicode(CharBuffer source, ByteBuffer target, IntBuffer offsets) argument
1150 endLoop(CharBuffer source, ByteBuffer target, IntBuffer offsets) argument
1159 outputBytes(CharBuffer source, ByteBuffer target, IntBuffer offsets) argument
[all...]
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DUnicodeNameTransliterator.java48 Position offsets, boolean isIncremental) {
49 int cursor = offsets.start;
50 int limit = offsets.limit;
74 offsets.contextLimit += limit - offsets.limit;
75 offsets.limit = limit;
76 offsets.start = cursor;
47 handleTransliterate(Replaceable text, Position offsets, boolean isIncremental) argument
H A DSimpleFormatter.java105 * @param offsets offsets[i] receives the offset of where
108 * If there is no {i} in the pattern, then offsets[i] is set to -1.
117 StringBuilder appendTo, int[] offsets, CharSequence... values) {
118 return SimpleFormatterImpl.formatAndAppend(compiledPattern, appendTo, offsets, values);
127 * @param offsets offsets[i] receives the offset of where
130 * If there is no {i} in the pattern, then offsets[i] is set to -1.
138 StringBuilder result, int[] offsets, CharSequence... values) {
139 return SimpleFormatterImpl.formatAndReplace(compiledPattern, result, offsets, value
116 formatAndAppend( StringBuilder appendTo, int[] offsets, CharSequence... values) argument
137 formatAndReplace( StringBuilder result, int[] offsets, CharSequence... values) argument
[all...]
/external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
H A DUnicodeNameTransliterator.java47 Position offsets, boolean isIncremental) {
48 int cursor = offsets.start;
49 int limit = offsets.limit;
73 offsets.contextLimit += limit - offsets.limit;
74 offsets.limit = limit;
75 offsets.start = cursor;
46 handleTransliterate(Replaceable text, Position offsets, boolean isIncremental) argument
/external/pdfium/third_party/libtiff/
H A Dtif_flush.c50 uint64 *offsets=NULL, *sizes=NULL; local
54 if( TIFFGetField( tif, TIFFTAG_TILEOFFSETS, &offsets )
57 tif->tif_dir.td_nstrips, offsets )
68 if( TIFFGetField( tif, TIFFTAG_STRIPOFFSETS, &offsets )
71 tif->tif_dir.td_nstrips, offsets )
/external/skia/experimental/tools/
H A Dmskp_parser.py37 offsets = [] variable
43 offsets.append(offset)
50 if version == 2 or len(offsets) < 2:
57 o.write(src.read(offsets[1] - offsets[0]))
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/timezone/
H A DTimeZoneOffsetLocalTest.java52 // Expected offsets by getOffset(int era, int year, int month, int day, int dayOfWeek, int milliseconds)
70 // Expected offsets by getOffset(long time, boolean local, int[] offsets) with local = true
71 // or getOffsetFromLocal(long time, int nonExistingTimeOpt, int duplicatedTimeOpt, int[] offsets)
89 // Expected offsets by getOffsetFromLocal(long time, int nonExistingTimeOpt, int duplicatedTimeOpt, int[] offsets)
107 int[] offsets = new int[2];
171 // Test getOffset(long time, boolean local, int[] offsets) with local=true
174 TESTZONES[i].getOffset(MILLIS[m], true, offsets);
175 if (offsets[
[all...]
/external/libjpeg-turbo/java/org/libjpegturbo/turbojpeg/
H A DYUVImage.java120 * <code>i</code> should be at least <code>offsets[i] +
124 * @param offsets If this <code>YUVImage</code> instance represents a
125 * subregion of a larger image, then <code>offsets[i]</code> specifies the
127 * larger image. Setting this to null is the same as setting the offsets for
147 public YUVImage(byte[][] planes, int[] offsets, int width, int[] strides, argument
149 setBuf(planes, offsets, width, strides, height, subsamp, false);
184 * <code>i</code> should be at least <code>offsets[i] +
188 * @param offsets If this <code>YUVImage</code> instance represents a
189 * subregion of a larger image, then <code>offsets[i]</code> specifies the
191 * larger image. Setting this to null is the same as setting the offsets fo
211 setBuf(byte[][] planes, int[] offsets, int width, int strides[], int height, int subsamp) argument
216 setBuf(byte[][] planes, int[] offsets, int width, int strides[], int height, int subsamp, boolean alloc) argument
[all...]
/external/syslinux/gpxe/src/drivers/infiniband/
H A Dqib_genbits.pl22 my $offsets = {};
31 $offsets->{$structure} = $2;
47 my $data = [ map { { name => $_, offset => $offsets->{$_},
49 sort { hex ( $offsets->{$a} ) <=> hex ( $offsets->{$b} ) }
50 keys %$offsets ];
/external/mesa3d/src/intel/vulkan/tests/
H A Dstate_pool_no_free.c36 uint32_t offsets[STATES_PER_THREAD]; member in struct:job
49 job->offsets[i] = state.offset;
89 if (thread_max < jobs[i].offsets[next[i]]) {
90 thread_max = jobs[i].offsets[next[i]];
102 assert(jobs[max_thread_idx].offsets[next[max_thread_idx]] > highest);
104 highest = jobs[max_thread_idx].offsets[next[max_thread_idx]];
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
H A DSimpleFormatterTest.java49 int[] offsets = new int[1];
53 fmt.formatAndAppend(new StringBuilder(), offsets).toString());
55 "offsets[0]",
57 offsets[0]);
145 int[] offsets = new int[6];
151 offsets,
155 verifyOffsets(expectedOffsets, offsets);
174 int[] offsets = new int[4];
181 offsets,
185 verifyOffsets(expectedOffsets, offsets);
[all...]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
H A DSimpleFormatterTest.java48 int[] offsets = new int[1];
52 fmt.formatAndAppend(new StringBuilder(), offsets).toString());
54 "offsets[0]",
56 offsets[0]);
144 int[] offsets = new int[6];
150 offsets,
154 verifyOffsets(expectedOffsets, offsets);
173 int[] offsets = new int[4];
180 offsets,
184 verifyOffsets(expectedOffsets, offsets);
[all...]
/external/icu/icu4c/source/i18n/
H A Dname2uni.cpp110 void NameUnicodeTransliterator::handleTransliterate(Replaceable& text, UTransPosition& offsets, argument
118 offsets.start = offsets.limit;
126 offsets.start = offsets.limit;
133 int32_t cursor = offsets.start;
134 int32_t limit = offsets.limit;
247 offsets.contextLimit += limit - offsets.limit;
248 offsets
[all...]
/external/icu/icu4c/source/test/intltest/
H A Dsimpleformattertest.cpp77 int32_t offsets[] = { 0 }; local
81 fmt.formatAndAppend(NULL, 0, appendTo, offsets, 1, status));
82 assertEquals("formatAndAppend offsets[0]", -1, offsets[0]);
163 int32_t offsets[6]; local
173 offsets,
174 UPRV_LENGTHOF(offsets),
179 verifyOffsets(expectedOffsets, offsets, UPRV_LENGTHOF(expectedOffsets));
182 // Ensure we don't write to offsets array beyond its length.
184 offsets[UPRV_LENGTHO
346 int32_t offsets[4]; local
376 int32_t offsets[4]; local
406 int32_t offsets[4]; local
436 int32_t offsets[4]; local
[all...]
/external/drm_hwcomposer/
H A Ddrmhwcgralloc.h60 uint32_t offsets[4]; member in struct:hwc_drm_bo
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DSimpleFormatter.java108 * @param offsets offsets[i] receives the offset of where
111 * If there is no {i} in the pattern, then offsets[i] is set to -1.
121 StringBuilder appendTo, int[] offsets, CharSequence... values) {
122 return SimpleFormatterImpl.formatAndAppend(compiledPattern, appendTo, offsets, values);
131 * @param offsets offsets[i] receives the offset of where
134 * If there is no {i} in the pattern, then offsets[i] is set to -1.
143 StringBuilder result, int[] offsets, CharSequence... values) {
144 return SimpleFormatterImpl.formatAndReplace(compiledPattern, result, offsets, value
120 formatAndAppend( StringBuilder appendTo, int[] offsets, CharSequence... values) argument
142 formatAndReplace( StringBuilder result, int[] offsets, CharSequence... values) argument
[all...]
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_sample_aos.h49 const LLVMValueRef *offsets,
/external/skia/src/sfnt/
H A DSkOTTable_loca.h26 } offsets; member in struct:SkOTTableIndexToLocation

Completed in 699 milliseconds

1234567891011>>