HomeSort by relevance Sort by last modified time
    Searched refs:offsets (Results 151 - 175 of 551) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/chromium_org/third_party/icu/source/test/intltest/
convtest.h 42 const int32_t *offsets; member in struct:ConversionCase
convtest.cpp 126 cc.offsets=testCase->getIntVector(offsetsLength, "offsets", errorCode);
128 cc.offsets=NULL;
130 errln("toUnicode[%d] unicode[%d] and offsets[%d] must have the same length",
239 cc.offsets=testCase->getIntVector(offsetsLength, "offsets", errorCode);
241 cc.offsets=NULL;
243 errln("fromUnicode[%d] bytes[%d] and offsets[%d] must have the same length",
721 printOffsets(const int32_t *offsets, int32_t length, char *out) {
724 if(offsets==NULL)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
lp_bld_format.h 106 LLVMValueRef offsets,
  /external/chromium_org/third_party/opus/src/celt/
rate.h 92 @param offsets Requested increase or decrease in the number of bits for
98 int compute_allocation(const CELTMode *m, int start, int end, const int *offsets, const int *cap, int alloc_trim, int *intensity, int *dual_stero,
  /external/chromium_org/ui/base/l10n/
l10n_util_mac.h 53 std::vector<size_t>* offsets);
l10n_util.cc 677 std::vector<size_t>* offsets) {
687 // silently fail to insert one. If |offsets| is non-NULL, then don't do this
690 if (!offsets) {
714 format_string, replacements, offsets);
802 std::vector<size_t> offsets; local
805 base::string16 result = GetStringFUTF16(message_id, replacements, &offsets);
806 DCHECK(offsets.size() == 1);
807 *offset = offsets[0];
814 std::vector<size_t>* offsets) {
818 return GetStringFUTF16(message_id, replacements, offsets);
    [all...]
  /external/harfbuzz_ng/src/
hb-buffer-deserialize-text.rl 76 offsets = '@' (num >tok %parse_x_offset) ',' (num >tok %parse_y_offset );
82 offsets?
hb-old.cc 339 ALLOCATE_ARRAY (HB_FixedPoint, item.offsets, num_glyphs);
340 /* Apparently in some cases the offsets array will not be fully assigned to.
342 memset (item.offsets, 0, num_glyphs * sizeof (item.offsets[0]));
390 info[i].var1.u32 = item.offsets[i].x;
391 info[i].var2.u32 = item.offsets[i].y;
  /external/icu4c/i18n/
rbt.h 404 virtual void handleTransliterate(Replaceable& text, UTransPosition& offsets,
  /external/icu4c/test/intltest/
convtest.h 42 const int32_t *offsets; member in struct:ConversionCase
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",
750 printOffsets(const int32_t *offsets, int32_t length, char *out) {
753 if(offsets==NULL)
    [all...]
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_format.h 106 LLVMValueRef offsets,
  /libcore/luni/src/main/java/java/util/regex/
Matcher.java 65 * Holds the offsets for the most recent match.
670 private static native boolean findImpl(long addr, String s, int startIndex, int[] offsets);
671 private static native boolean findNextImpl(long addr, String s, int[] offsets);
674 private static native boolean lookingAtImpl(long addr, String s, int[] offsets);
675 private static native boolean matchesImpl(long addr, String s, int[] offsets);
  /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);
200 @Override public int writev(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws ErrnoException {
202 return os.writev(fd, buffers, offsets, byteCounts);
  /external/chromium_org/ui/aura/test/
event_generator.cc 433 const std::vector<gfx::Point>& offsets,
435 int steps = offsets.size();
452 offsets[i].x(), offsets[i].y(),
453 offsets[i].x(), offsets[i].y(),
462 offsets[steps - 1].x(), offsets[steps - 1].y(),
463 offsets[steps - 1].x(), offsets[steps - 1].y()
    [all...]
  /external/skia/gm/
xfermodeimagefilter.cpp 171 // Test offsets on SrcMode (uses fixed-function blend)
187 // Test offsets on Darken (uses shader blend)
202 int offsets[nbSamples][4] = {{ 10, 10, -16, -16}, variable
206 SkIRect cropRect = SkIRect::MakeXYWH(offsets[i][0],
207 offsets[i][1],
208 fBitmap.width() + offsets[i][2],
209 fBitmap.height() + offsets[i][3]);
  /external/chromium_org/third_party/ots/src/
cff.cc 59 index->offsets.clear();
108 index->offsets.push_back(
112 for (unsigned i = 1; i < index->offsets.size(); ++i) {
113 // We allow consecutive identical offsets here for zero-length strings.
115 if (index->offsets[i] < index->offsets[i - 1]) {
120 index->offset_to_next = index->offsets.back();
127 if (index.offsets.size() == 0) { // just in case.
130 for (unsigned i = 1; i < index.offsets.size(); ++i) {
131 const size_t length = index.offsets[i] - index.offsets[i - 1]
    [all...]
  /external/smack/src/org/xbill/DNS/
Name.java 28 * of labels and the 7 higher order bytes store per-label offsets.
30 private long offsets; field in class:Name
53 /** The maximum number of cached offsets */
90 offsets &= (~(0xFFL << shift));
91 offsets |= ((long)offset << shift);
102 return ((int)(offsets >>> shift) & 0xFF);
113 offsets &= ~(0xFF);
114 offsets |= labels;
119 return (int)(offsets & 0xFF);
126 dst.offsets = src.offsets
    [all...]
  /external/harfbuzz_ng/src/hb-old/
harfbuzz-shaper.cpp 198 item->offsets[gfrom+i].x = p.x;
199 item->offsets[gfrom+i].y = p.y;
201 item->offsets[gfrom+i].x = p.x - baseMetrics.xOffset;
202 item->offsets[gfrom+i].y = p.y - baseMetrics.yOffset;
935 HB_FixedPoint *offsets = item->offsets; local
936 offsets[i].x = positions[i].x_pos;
937 offsets[i].y = positions[i].y_pos;
940 offsets[i].x += positions[i - back].x_pos;
941 offsets[i].y += positions[i - back].y_pos
    [all...]
  /external/chromium_org/third_party/angle/src/compiler/
ParseContext.cpp 22 // Look at a '.' field selector string and change it into offsets
42 fields.offsets[i] = 0;
46 fields.offsets[i] = 0;
50 fields.offsets[i] = 0;
54 fields.offsets[i] = 1;
58 fields.offsets[i] = 1;
62 fields.offsets[i] = 1;
66 fields.offsets[i] = 2;
70 fields.offsets[i] = 2;
74 fields.offsets[i] = 2
    [all...]
  /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/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))
189 int32_t offsets[] = {0,0,0,0,0,1,1,2,2,2,2,3,5 }; local
196 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))
248 static const int32_t offsets[] = {-1, -1, -1, -1, local
262 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
456 static const int32_t offsets[] = { 0x00, 1}; local
559 static const int32_t offsets[] = { -1, -1, -1, -1, 0x00, 1}; local
600 static const int32_t offsets[] = { 0x00, 0x00, 0x00, 1}; local
1541 static const int32_t offsets[] = {0x00, 0x00, 0x01, 0x01, 0x03, 0x03 }; local
1583 static const int32_t offsets[] = {0,0,0,0,0,1,1,2,2,2,2,3,5 }; local
1668 static const int32_t offsets[] = {-1, -1, -1, -1, local
1717 static const int32_t offsets[] = {0,0,0,0, local
1754 int32_t offsets[]={0x00, 0x00, 0x00, 0x01, 0x01, 0x02, local
    [all...]
  /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/chromium_org/ash/display/
display_layout.cc 64 DisplayLayout DisplayLayout::FromInts(int position, int offsets) {
65 return DisplayLayout(static_cast<Position>(position), offsets);
  /external/chromium_org/third_party/icu/source/common/
ucnv_ext.h 351 int32_t **offsets, int32_t srcIndex,
371 int32_t **offsets, int32_t srcIndex,

Completed in 1779 milliseconds

1 2 3 4 5 67 8 91011>>