HomeSort by relevance Sort by last modified time
    Searched defs:offsets (Results 51 - 75 of 759) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/icu/icu4c/source/test/intltest/
convtest.h 44 const int32_t *offsets; member in struct:ConversionCase
simpleformattertest.cpp 77 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_LENGTHOF(offsets) - 1] = 289
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/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
QuantityFormatter.java 127 int[] offsets = new int[1]; local
128 SimpleFormatterImpl.formatAndAppend(compiledPattern, appendTo, offsets, value);
130 if (offsets[0] >= 0) {
131 pos.setBeginIndex(pos.getBeginIndex() + offsets[0]);
132 pos.setEndIndex(pos.getEndIndex() + offsets[0]);
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/timezone/
TimeZoneOffsetLocalTest.java 55 // Expected offsets by getOffset(int era, int year, int month, int day, int dayOfWeek, int milliseconds)
73 // Expected offsets by getOffset(long time, boolean local, int[] offsets) with local = true
74 // or getOffsetFromLocal(long time, int nonExistingTimeOpt, int duplicatedTimeOpt, int[] offsets)
92 // Expected offsets by getOffsetFromLocal(long time, int nonExistingTimeOpt, int duplicatedTimeOpt, int[] offsets)
110 int[] offsets = new int[2]; local
174 // Test getOffset(long time, boolean local, int[] offsets) with local=true
177 TESTZONES[i].getOffset(MILLIS[m], true, offsets);
178 if (offsets[0] != OFFSETS2[m][0] || offsets[1] != OFFSETS2[m][1])
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
SimpleFormatterTest.java 51 int[] offsets = new int[1]; local
55 fmt.formatAndAppend(new StringBuilder(), offsets).toString());
57 "offsets[0]",
59 offsets[0]);
147 int[] offsets = new int[6]; local
153 offsets,
157 verifyOffsets(expectedOffsets, offsets);
176 int[] offsets = new int[4]; local
183 offsets,
187 verifyOffsets(expectedOffsets, offsets);
194 int[] offsets = new int[4]; local
211 int[] offsets = new int[4]; local
255 int[] offsets = new int[4]; local
    [all...]
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
ScriptRunModuleWriter.java 74 Vector offsets = scriptRangeOffsets[script - minScript]; local
81 for (int offset = 0; offset < offsets.size(); offset += 1) {
82 Integer i = (Integer) offsets.elementAt(offset);
  /external/libjpeg-turbo/java/org/libjpegturbo/turbojpeg/
YUVImage.java 120 * <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,
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
294 int[] offsets = new int[nc]; local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/vl/
vl_bicubic_filter.c 151 unsigned video_height, struct vertex2f *offsets)
212 vtex, ureg_imm2f(shader, offsets[i].x, offsets[i].y));
245 struct vertex2f offsets[16]; local
304 offsets[0].x = -1.0f; offsets[0].y = -1.0f;
305 offsets[1].x = 0.0f; offsets[1].y = -1.0f;
306 offsets[2].x = 1.0f; offsets[2].y = -1.0f
    [all...]
vl_matrix_filter.c 79 struct vertex2f *offsets, const float *matrix_values)
112 if (matrix_values[i] != 0.0f && !is_vec_zero(offsets[i])) {
114 i_vtex, ureg_imm2f(shader, offsets[i].x, offsets[i].y));
122 struct ureg_src src = is_vec_zero(offsets[i]) ? i_vtex : ureg_src(t_array[i]);
160 struct vertex2f *offsets, v, sizes; local
218 offsets = MALLOC(sizeof(struct vertex2f) * num_offsets);
219 if (!offsets)
227 offsets[i++] = v;
230 offsets[i].x /= video_width
    [all...]
vl_median_filter.c 77 struct vertex2f *offsets,
89 assert(num_offsets & 1); /* we need an odd number of offsets */
90 if (!(num_offsets & 1)) { /* yeah, we REALLY need an odd number of offsets!!! */
122 if (!is_vec_zero(offsets[i])) {
124 i_vtex, ureg_imm2f(shader, offsets[i].x, offsets[i].y));
131 struct ureg_src src = is_vec_zero(offsets[i]) ? i_vtex : ureg_src(t_array[i]);
159 struct vertex2f **offsets, unsigned *num_offsets)
165 assert(offsets && num_offsets);
191 *offsets = MALLOC(sizeof(struct vertex2f) * *num_offsets)
246 struct vertex2f *offsets = NULL; local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i915/
intel_regions.h 144 uint32_t offsets[3]; member in struct:__DRIimageRec
  /external/mesa3d/src/mesa/drivers/dri/i965/
intel_image.h 80 uint32_t offsets[3]; member in struct:__DRIimageRec
  /external/perfetto/src/tracing/core/
trace_buffer_unittest.cc 1012 size_t offsets[] = {13, 16, size_t(-4), local
    [all...]
  /external/skqp/src/gpu/glsl/
GrGLSLFragmentShaderBuilder.cpp 303 SkSTArray<16, SkPoint, true> offsets; local
304 offsets.push_back_n(specs.fEffectiveSampleCnt);
305 m.mapPoints(offsets.begin(), specs.fSampleLocations, specs.fEffectiveSampleCnt);
308 this->definitions().appendf("float2(%f, %f)", offsets[i].x(), offsets[i].y());
  /external/v8/src/profiler/
tick-sample.cc 30 int offsets[4]; member in struct:v8::__anon41155::Pattern
58 for (int* offset_ptr = pattern->offsets; *offset_ptr != -1; ++offset_ptr) {
  /external/v8/src/wasm/
function-body-decoder.h 137 // If one wants to iterate over the instruction offsets without looking at
166 base::iterator_range<offset_iterator> offsets() { function in class:v8::internal::wasm::BytecodeIterator
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/
trxhdr.h 45 * as below where size of "offsets" field will vary as per the TRX version.
57 uint32 offsets[TRX_MAX_OFFSET]; /* Offsets of partitions from start of header */ member in struct:trx_header
59 uint32 offsets[1]; /* Offsets of partitions from start of header */ member in struct:trx_header
  /system/timezone/tzlookup_generator/src/main/java/com/android/libcore/timezone/tzlookup/zonetree/
ZoneOffsetPeriod.java 79 int[] offsets = new int[2]; local
80 timeZone.getOffset(startMillis, false /* local */, offsets);
81 return new ZoneOffsetPeriod(minTime, end, offsets[0], offsets[1], longName);
206 int[] offsets = new int[2]; local
207 timeZone.getOffset(startMillis, false /* local */, offsets);
209 TimeZoneNames.NameType longNameType = offsets[1] == 0
  /test/vti/dashboard/src/main/java/com/android/vts/entity/
TestStatusEntity.java 153 List<Long> offsets = (List<Long>) e.getProperty(FAILING_OFFSETS); local
154 if (ids.size() == offsets.size()) {
157 new TestCaseReference(ids.get(i), offsets.get(i).intValue()));
  /system/timezone/testing/src/main/java/libcore/tzdata/testing/
ZoneInfoTestHelper.java 232 // Write out the offsets for later manipulation.
240 // Construct the data section in advance, so we know the offsets.
242 Map<String, Integer> offsets = new HashMap<>(); local
245 offsets.put(datum.id, offset);
260 Integer offset = offsets.get(id);
  /external/annotation-tools/annotation-file-utilities/
annotation-file-format.tex 530 offsets''. For source code we use a different syntax called ``source code
549 \subsubsection{Bytecode offsets\label{bytecode-offsets}}
552 annotation file uses offsets into the bytecode array of the class file to
559 offsets. Non-expression annotations such as those on methods,
595 The grammar uses \bnflit{\#} for bytecode offsets and \bnflit{*} for source code indexes.
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
UnicodeSetStringSpan.java 82 private OffsetList offsets; field in class:UnicodeSetStringSpan
103 offsets = new OffsetList();
226 offsets = new OffsetList();
383 * Synchronized method for complicated spans using the offsets.
396 offsets.setMaxLength(initSize);
428 if (!offsets.containsOffset(inc) && matches16CPB(s, pos - overlap, length, string, length16)) {
432 offsets.addOffset(inc);
498 if (offsets.isEmpty()) {
504 if (offsets.isEmpty()) {
531 offsets.shift(spanLength)
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
UnicodeSetStringSpan.java 78 private OffsetList offsets; field in class:UnicodeSetStringSpan
99 offsets = new OffsetList();
222 offsets = new OffsetList();
379 * Synchronized method for complicated spans using the offsets.
392 offsets.setMaxLength(initSize);
424 if (!offsets.containsOffset(inc) && matches16CPB(s, pos - overlap, length, string, length16)) {
428 offsets.addOffset(inc);
494 if (offsets.isEmpty()) {
500 if (offsets.isEmpty()) {
527 offsets.shift(spanLength)
    [all...]
  /dalvik/dx/src/com/android/dx/cf/cst/
ConstantPoolParser.java 65 /** {@code non-null;} byte offsets to each cst */
66 private final int[] offsets; field in class:ConstantPoolParser
88 this.offsets = new int[size];
139 "constant_pool_count: " + Hex.u2(offsets.length));
148 BitSet wasUtf8 = new BitSet(offsets.length);
150 for (int i = 1; i < offsets.length; i++) {
151 int offset = offsets[i];
158 for (int i = 1; i < offsets.length; i++) {
163 int offset = offsets[i];
165 for (int j = i + 1; j < offsets.length; j++)
    [all...]
  /external/ImageMagick/coders/
sgi.c 434 *offsets;
445 offsets=(ssize_t *) AcquireQuantumMemory((size_t) iris_info.rows,
446 iris_info.depth*sizeof(*offsets));
451 if ((offsets == (ssize_t *) NULL) ||
455 if (offsets == (ssize_t *) NULL)
456 offsets=(ssize_t *) RelinquishMagickMemory(offsets);
465 offsets[i]=ReadBlobMSBSignedLong(image);
480 if (offsets[y+z*iris_info.rows] < offset)
482 offset=offsets[y+z*iris_info.rows]
430 *offsets; local
1080 *offsets; local
    [all...]

Completed in 656 milliseconds

1 23 4 5 6 7 8 91011>>