/external/icu4c/i18n/ |
nortrans.cpp | 99 void NormalizationTransliterator::handleTransliterate(Replaceable& text, UTransPosition& offsets, 102 int32_t start = offsets.start; 103 int32_t limit = offsets.limit; 111 * In incremental mode, a chunk that ends with offsets.limit 128 offsets.contextLimit += delta; 129 offsets.limit += delta; 130 offsets.start = limit + delta; 168 offsets.start = start; 169 offsets.contextLimit += limit - offsets.limit [all...] |
ucol_cnt.cpp | 72 tbl->offsets = NULL; 138 if(table->offsets != NULL) { 139 uprv_free(table->offsets); 141 table->offsets = (int32_t *)uprv_malloc(table->size*sizeof(int32_t)); 142 if(table->offsets == NULL) { 150 table->offsets[i] = table->position+mainOffset; 161 uprv_free(table->offsets); 162 table->offsets = NULL; 173 uprv_free(table->offsets); 174 table->offsets = NULL [all...] |
brktrans.cpp | 82 void BreakTransliterator::handleTransliterate(Replaceable& text, UTransPosition& offsets, 91 bi->preceding(offsets.start); 97 for(boundary = bi->next(); boundary != UBRK_DONE && boundary < offsets.limit; boundary = bi->next()) { 131 offsets.contextLimit += delta; 132 offsets.limit += delta; 133 offsets.start = isIncremental ? lastBoundary + delta : offsets.limit;
|
/dalvik/libdex/ |
DexDataMap.h | 29 u4* offsets; /* array of item offsets */ member in struct:DexDataMap 45 * all previously added offsets.
|
/dalvik/dx/src/com/android/dx/cf/cst/ |
ConstantPoolParser.java | 59 /** {@code non-null;} byte offsets to each cst */ 60 private final int[] offsets; field in class:ConstantPoolParser 82 this.offsets = new int[size]; 133 "constant_pool_count: " + Hex.u2(offsets.length)); 142 BitSet wasUtf8 = new BitSet(offsets.length); 144 for (int i = 1; i < offsets.length; i++) { 145 int offset = offsets[i]; 152 for (int i = 1; i < offsets.length; i++) { 157 int offset = offsets[i]; 159 for (int j = i + 1; j < offsets.length; j++) [all...] |
/frameworks/base/core/jni/android/graphics/ |
YuvToJpegEncoder.cpp | 25 int height, int* offsets, int jpegQuality) { 43 compress(&cinfo, (uint8_t*) inYuv, offsets); 72 uint8_t* yuv, int* offsets) { 84 uint8_t* yPlanar = yuv + offsets[0]; 85 uint8_t* vuPlanar = yuv + offsets[1]; //width * height; 145 uint8_t* yuv, int* offsets) { 161 uint8_t* yuvOffset = yuv + offsets[0]; 214 int format, int width, int height, jintArray offsets, 220 jint* imgOffsets = env->GetIntArrayElements(offsets, NULL); 230 env->ReleaseIntArrayElements(offsets, imgOffsets, 0) [all...] |
/external/icu4c/common/ |
ucnvscsu.c | 68 /* use table of predefined fixed offsets for values from fixedThreshold */ 72 /* constant offsets for the 8 static windows */ 84 /* initial offsets for the 8 dynamic (sliding) windows */ 96 /* Table of fixed predefined Offsets */ 119 /* dynamic window offsets, intitialize to default values from initialDynamicOffsets */ 236 int32_t *offsets; local 253 offsets=pArgs->offsets; 295 if(offsets!=NULL) { 296 *offsets++=sourceIndex 1015 int32_t *offsets; local [all...] |
ucnv_cb.c | 30 /* need to update the offsets when the target moves. */ 31 /* Note: Recursion may occur in the cb functions, be sure to update the offsets correctly 49 &args->offsets, offsetIndex, 86 NULL, /* no offsets */ 90 if(args->offsets) 94 *(args->offsets)++ = offsetIndex; 240 &args->offsets, offsetIndex,
|
ucnvmbcs.c | 1889 int32_t *offsets; local 2041 int32_t *offsets; local 2321 int32_t *offsets; local 3262 int32_t *offsets; local 3494 int32_t *offsets; local 3670 int32_t *offsets; local 3927 int32_t *offsets; local [all...] |
ucnvbocu.c | 391 int32_t *offsets; local 405 offsets=pArgs->offsets; 436 *offsets++=nextSourceIndex++; 444 *offsets++=nextSourceIndex++; 454 sourceIndex=nextSourceIndex; /* wrong if offsets==NULL but does not matter */ 472 *offsets++=sourceIndex; 509 *offsets++=sourceIndex; 531 *offsets++=sourceIndex; 532 *offsets++=sourceIndex 940 int32_t *offsets; local [all...] |
/frameworks/base/graphics/java/android/graphics/ |
YuvImage.java | 139 int[] offsets = calculateOffsets(rectangle.left, rectangle.top); local 142 rectangle.height(), offsets, mStrides, quality, stream, 183 int[] offsets = null; local 185 offsets = new int[] {top * mStrides[0] + left, 188 return offsets; 192 offsets = new int[] {top * mStrides[0] + left / 2 * 4}; 193 return offsets; 196 return offsets; 238 int format, int width, int height, int[] offsets, int[] strides,
|
/external/chromium/chrome/browser/translate/ |
translate_infobar_delegate.cc | 291 std::vector<size_t> offsets; local 294 string16(), string16(), &offsets); 295 DCHECK_EQ(2U, offsets.size()); 297 *swap_languages = (offsets[0] > offsets[1]); 299 std::swap(offsets[0], offsets[1]); 301 strings->push_back(text.substr(0, offsets[0])); 302 strings->push_back(text.substr(offsets[0], offsets[1] - offsets[0])) [all...] |
/external/qemu/block/ |
dmg.c | 32 * offsets[i] is the offset in the .dmg file, 34 * sectors[i] is the sector beginning at offsets[i], 41 uint64_t* offsets; member in struct:BDRVDMGState 85 s->offsets = s->lengths = s->sectors = s->sectorcounts = NULL; 111 /* read offsets */ 131 s->offsets = qemu_realloc(s->offsets, new_size); 141 last_in_offset = s->offsets[i-1]+s->lengths[i-1]; 157 s->offsets[i] = last_in_offset+read_off(bs, offset); 231 ret = bdrv_pread(bs->file, s->offsets[chunk] + i [all...] |
/frameworks/base/cmds/servicemanager/ |
binder.h | 39 uint32_t *offs; /* array of offsets */ 41 uint32_t offs_avail; /* entries available in offsets array */ 44 uint32_t *offs0; /* start of offsets buffer */
|
/external/freetype/src/cff/ |
cfftypes.h | 51 /* off_size :: The size in bytes of object offsets in index. */ 58 /* offsets :: A table of element offsets in the index. Must be */ 72 FT_ULong* offsets; member in struct:CFF_IndexRec_
|
/external/chromium/chrome/browser/ui/cocoa/ |
framed_browser_window.h | 14 // Offsets from the top/left of the window frame to the top of the window 19 // Offsets from the top/left of the window frame to the top of the window
|
base_bubble_controller.mm | 188 NSSize offsets = NSMakeSize(info_bubble::kBubbleArrowXOffset + 190 offsets = [[parentWindow_ contentView] convertSize:offsets toView:nil]; 192 origin.x -= NSWidth([window frame]) - offsets.width; 194 origin.x -= offsets.width;
|
/hardware/broadcom/wlan/bcm4329/dhdutil/include/ |
trxhdr.h | 40 uint32 offsets[TRX_MAX_OFFSET]; /* Offsets of partitions from start of header */ member in struct:trx_header
|
/hardware/broadcom/wlan/bcmdhd/dhdutil/include/ |
trxhdr.h | 40 uint32 offsets[TRX_MAX_OFFSET]; /* Offsets of partitions from start of header */ member in struct:trx_header
|
/bionic/libc/tools/zoneinfo/ |
ZoneCompactor.java | 43 // Raw GMT offsets by zone name 44 Map<String,Integer> offsets = new HashMap<String,Integer>(); field in class:ZoneCompactor 112 offsets.put(s, new Integer(gmtOffset)); 126 offsets.put(from, offsets.get(to)); 151 writeInt(idx, offsets.get(zname).intValue());
|
/external/proguard/src/proguard/optimize/peephole/ |
GotoCommonCodeReplacer.java | 157 * Returns the number of common bytes preceding the given offsets, 176 // Is the code identical at both offsets? 189 // Are there instructions at both offsets? 193 // Are the offsets involved in some branches? 242 * the given offsets (including both). 246 // Swap the offsets if the second one is smaller than the first one.
|
/libcore/luni/src/test/java/libcore/java/text/ |
CollatorTest.java | 118 private void assertCollationElementIterator(CollationElementIterator it, Integer... offsets) { 119 for (int offset : offsets) { 126 private void assertGetCollationElementIteratorString(Locale l, String s, Integer... offsets) { 128 assertCollationElementIterator(coll.getCollationElementIterator(s), offsets); local 131 private void assertGetCollationElementIteratorCharacterIterator(Locale l, String s, Integer... offsets) { 134 assertCollationElementIterator(coll.getCollationElementIterator(it), offsets); local
|
/external/webkit/Source/WebCore/platform/graphics/skia/ |
SkiaFontWin.cpp | 286 const GOFFSET* offsets, 301 pos[i].set(x + (offsets ? offsets[i].du : 0), 302 y + (offsets ? offsets[i].dv : 0)); 315 if (offsets && (offsets[i].du || offsets[i].dv)) { 316 offsetX = offsets[i].du; 317 offsetY = offsets[i].dv [all...] |
/external/javassist/src/main/javassist/bytecode/ |
CodeIterator.java | 303 * Branch offsets and the exception table are also updated. 325 * Branch offsets and the exception table are also updated. 350 * Branch offsets and the exception table are also updated. 376 * Branch offsets and the exception table are also updated. 398 * Branch offsets and the exception table are also updated. 423 * Branch offsets and the exception table are also updated. 470 * Branch offsets and the exception table are also updated. 487 * Branch offsets and the exception table are also updated. 509 * Branch offsets and the exception table are also updated. 526 * Branch offsets and the exception table are also updated 1187 int[] offsets = new int[size]; local 1201 int[] offsets = new int[npairs]; local 1449 int[] offsets; field in class:CodeIterator.Switcher [all...] |
/frameworks/base/core/jni/ |
android_graphics_PixelFormat.cpp | 38 static offsets_t offsets; member in namespace:android 75 env->SetIntField(pixelFormatObject, offsets.bytesPerPixel, info.bytesPerPixel); 76 env->SetIntField(pixelFormatObject, offsets.bitsPerPixel, info.bitsPerPixel); 94 offsets.bytesPerPixel = env->GetFieldID(clazz, "bytesPerPixel", "I"); 95 offsets.bitsPerPixel = env->GetFieldID(clazz, "bitsPerPixel", "I");
|