/external/chromium_org/third_party/icu/source/i18n/ |
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;
|
/external/chromium_org/third_party/mesa/src/src/mesa/x86/ |
gen_matypes.c | 55 printf( " * Offsets for %s\n", x ); \ 92 /* struct gl_context offsets: 109 /* struct vertex_buffer offsets: 150 /* GLvector4f offsets: 173 /* GLmatrix offsets: 183 /* struct gl_light offsets: 226 /* struct gl_lightmodel offsets:
|
/external/icu/icu4c/source/common/ |
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,
|
/external/icu/icu4c/source/i18n/ |
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;
|
/external/mesa3d/src/mesa/x86/ |
gen_matypes.c | 55 printf( " * Offsets for %s\n", x ); \ 92 /* struct gl_context offsets: 109 /* struct vertex_buffer offsets: 150 /* GLvector4f offsets: 173 /* GLmatrix offsets: 183 /* struct gl_light offsets: 226 /* struct gl_lightmodel offsets:
|
/hardware/broadcom/wlan/bcmdhd/dhdutil/ |
ucode_download.c | 124 actual_data_len = ROUNDUP(trx->offsets[0], 4) + ROUNDUP(trx->offsets[1], 4); 157 fw_size = main_trx_hdr.offsets[0]; 158 second_offset = main_trx_hdr.offsets[2]; 196 ucode_len = ucode_trx_hdr->offsets[0]; 198 ROUNDUP(ucode_trx_hdr->offsets[0], 4); 199 initvals_len = ucode_trx_hdr->offsets[1];
|
/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,
|
/art/runtime/ |
handle_scope_test.cc | 38 // Test the offsets computed for members of HandleScope. Because of cross-compiling 41 TEST(HandleScopeTest, Offsets) NO_THREAD_SAFETY_ANALYSIS { 43 // here. So do the inverse: set some data, and access it through pointers created from the offsets.
|
offsets.cc | 17 #include "offsets.h"
|
/external/chromium_org/components/translate/core/browser/ |
translate_infobar_delegate.cc | 289 std::vector<size_t> offsets; local 292 &offsets); 293 DCHECK_EQ(2U, offsets.size()); 295 *swap_languages = (offsets[0] > offsets[1]); 297 std::swap(offsets[0], offsets[1]); 299 strings->push_back(text.substr(0, offsets[0])); 300 strings->push_back(text.substr(offsets[0], offsets[1] - offsets[0])) [all...] |
/external/chromium_org/gpu/command_buffer/client/ |
fenced_allocator_test.cc | 156 FencedAllocator::Offset offsets[kAllocCount]; local 158 offsets[i] = allocator_->Alloc(kSize); 159 EXPECT_NE(FencedAllocator::kInvalidOffset, offsets[i]); 160 EXPECT_GE(kBufferSize, offsets[i]+kSize); 170 allocator_->Free(offsets[0]); 172 offsets[0] = allocator_->Alloc(kSize/2); 173 EXPECT_NE(FencedAllocator::kInvalidOffset, offsets[0]); 174 EXPECT_GE(kBufferSize, offsets[0]+kSize); 184 allocator_->Free(offsets[i]); 198 FencedAllocator::Offset offsets[kAllocCount] local 246 FencedAllocator::Offset offsets[kAllocCount]; local [all...] |
/frameworks/native/cmds/servicemanager/ |
binder.h | 15 binder_size_t *offs; /* array of offsets */ 17 size_t offs_avail; /* entries available in offsets array */ 20 binder_size_t *offs0; /* start of offsets buffer */
|
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/cid/ |
cidload.c | 193 /* note that the font offsets are expressed in integer font units */ 399 FT_ULong* offsets = 0; local 423 /* reallocate offsets array if needed */ 435 if ( FT_RENEW_ARRAY( offsets, max_offsets, new_max ) ) 441 /* read the subrmap's offsets */ 448 offsets[count] = cid_get_offset( &p, (FT_Byte)dict->sd_bytes ); 452 /* offsets must be ordered */ 454 if ( offsets[count - 1] > offsets[count] ) 459 data_len = offsets[num_subrs] - offsets[0] [all...] |
/external/fonttools/Lib/fontTools/ttLib/tables/ |
E_B_L_C_.py | 72 # Save the original data because offsets are from the start of the table. 121 # in order to form offsets. This value will hold the size of the data 131 # The issue is maintaining the proper offsets when table information 132 # gets moved around. All offsets and size information must be recalculated 143 # compute the offsets properly. 265 # Skip the first 3 data names because they are byte offsets and counts. 467 # offsets. This is the form where offset[i] is the location and 469 offsets = list(allLocations[0]) + [loc[1] for loc in allLocations[1:]] 473 self.imageDataOffset = min(offsets) 474 offsetArray = [offset - self.imageDataOffset for offset in offsets] [all...] |
/art/runtime/entrypoints/jni/ |
jni_entrypoints.h | 21 #include "offsets.h"
|
/external/chromium_org/cc/output/ |
geometry_binding.cc | 82 const void* offsets[3] = { local 95 offsets[0])); 102 offsets[1])); 109 offsets[2]));
|
/external/chromium_org/third_party/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_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/ |
lp_state_so.c | 76 int *offsets, 101 lp->so_target.offset[i] = offsets[i]; 105 if (offsets[i] >= 0) 106 map_buffers[i] = ((char*)mapped) + offsets[i];
|
/external/chromium_org/third_party/skia/src/animator/ |
SkDrawGradient.h | 27 SkTDScalarArray offsets; member in class:SkDrawGradient
|
/external/chromium_org/ui/base/cocoa/ |
nsgraphics_context_additions.h | 16 // For layer backed view this method offsets the pattern phase to match the
|
/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/llvm/test/MC/AArch64/ |
adrp-relocation.s | 6 // relative offsets of testfn and foo) because its value depends on where this
|
/external/mesa3d/src/gallium/drivers/llvmpipe/ |
lp_state_so.c | 76 int *offsets, 101 lp->so_target.offset[i] = offsets[i]; 105 if (offsets[i] >= 0) 106 map_buffers[i] = ((char*)mapped) + offsets[i];
|
/external/skia/src/animator/ |
SkDrawGradient.h | 27 SkTDScalarArray offsets; member in class:SkDrawGradient
|
/external/libunwind/scripts/ |
kernel-files.txt | 10 $udir/src/ia64/offsets.h $kdir/arch/ia64/unwind/offsets.h
|