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

1 23 4 5 6 7 8 91011>>

  /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
  /external/icu4c/common/
ucnvhz.c 13 * 10/31/2000 Ram Implemented offsets logic function
43 if(args->offsets!=NULL){ \
44 *(offsets++) = sourceIndex-1; \
186 if(args->offsets) {
187 args->offsets[myTarget - args->target]=(int32_t)(mySource - args->source - 2);
297 if(args->offsets) {
298 args->offsets[myTarget - args->target]=(int32_t)(mySource - args->source - 1-(myData->isStateDBCS));
338 int32_t* offsets = args->offsets; local
413 if(offsets){
    [all...]
ucnvbocu.cpp 396 int32_t *offsets; local
410 offsets=pArgs->offsets;
441 *offsets++=nextSourceIndex++;
449 *offsets++=nextSourceIndex++;
459 sourceIndex=nextSourceIndex; /* wrong if offsets==NULL but does not matter */
477 *offsets++=sourceIndex;
514 *offsets++=sourceIndex;
536 *offsets++=sourceIndex;
537 *offsets++=sourceIndex
945 int32_t *offsets; local
    [all...]
ucnv.c 757 _updateOffsets(int32_t *offsets, int32_t length,
772 * does not handle offsets
777 limit=offsets+length;
782 while(offsets<limit) {
783 offset=*offsets;
785 *offsets=offset+delta;
787 ++offsets;
792 * does not handle offsets
795 while(offsets<limit) {
796 *offsets++=-1
831 int32_t *offsets; local
1121 int32_t *offsets; local
1276 int32_t *offsets; local
1567 int32_t *offsets; local
    [all...]
ucnv_io.cpp 57 * you just need to sum up the previous offsets.
187 offsetsCount, /* length of the swapper's temporary offsets[] */
1148 uint32_t offsets[offsetsCount]; \/* 16-bit-addressed offsets from inTable\/outTable *\/ 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,
ucnv2022.cpp 26 * 10/31/2000 Ram Implemented offsets logic functions
414 int32_t **offsets,
420 offsets, sourceIndex, pErrorCode);
1644 int32_t* offsets = args->offsets; local
2335 int32_t* offsets = args->offsets; local
2601 int32_t *offsets = args->offsets; local
2896 int32_t* offsets = args->offsets; local
    [all...]
ucnvisci.c 828 #define WRITE_TO_TARGET_FROM_U(args,offsets,source,target,targetLimit,targetByteUnit,err){ \
896 int32_t* offsets = args->offsets; local
    [all...]
ucnv_u32.c 129 int32_t *myOffsets = args->offsets;
207 args->offsets = myOffsets;
233 &args->offsets, -1,
336 &args->offsets, -1,
342 myOffsets = args->offsets;
415 args->offsets = myOffsets;
597 int32_t *myOffsets = args->offsets;
685 args->offsets = myOffsets;
711 &args->offsets, -1,
822 &args->offsets, -1
1050 int32_t *offsets=pArgs->offsets; local
    [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;
148 uint8_t* yuv, int* offsets) {
164 uint8_t* yuvOffset = yuv + offsets[0];
220 int format, int width, int height, jintArray offsets,
226 jint* imgOffsets = env->GetIntArrayElements(offsets, NULL);
236 env->ReleaseIntArrayElements(offsets, imgOffsets, 0)
    [all...]
  /external/icu4c/i18n/
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...]
  /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];
  /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...]
  /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/chromium/net/base/
escape_unittest.cc 408 std::vector<size_t> offsets; local
410 offsets.push_back(t);
413 std::for_each(offsets.begin(), offsets.end(),
416 EXPECT_EQ(offsets.size(), arraysize(expected_1));
418 EXPECT_EQ(expected_1[i], offsets[i]);
422 offsets.clear();
424 offsets.push_back(t);
430 std::for_each(offsets.begin(), offsets.end()
    [all...]
net_util_unittest.cc 996 std::vector<size_t> offsets; local
1821 std::vector<size_t> offsets; local
1826 NULL, NULL, &offsets); local
1861 NULL, NULL, &offsets); local
1896 NULL, NULL, &offsets); local
1926 NULL, NULL, &offsets); local
1964 &offsets); local
2003 &offsets); local
2029 kFormatUrlOmitHTTP, UnescapeRule::NORMAL, NULL, NULL, &offsets); local
2053 kFormatUrlOmitHTTP, UnescapeRule::NORMAL, NULL, NULL, &offsets); local
2078 UnescapeRule::NORMAL, NULL, NULL, &offsets); local
    [all...]
  /development/ndk/platforms/android-18/samples/gles3jni/jni/
gles3jni.h 84 // the buffer is filled with per-instance offsets, then unmapped.
95 void calcSceneParams(unsigned int w, unsigned int h, float* offsets);
gles3jni.cpp 138 float* offsets = mapOffsetBuf(); local
139 calcSceneParams(w, h, offsets);
153 float* offsets) {
183 offsets[2*idx + major] = centers[0][i];
184 offsets[2*idx + minor] = centers[1][j];
  /external/libvorbis/examples/
chaining_example.c 64 (ov.dataoffsets[i]-ov.offsets[i]));
  /external/skia/legacy/src/animator/
SkDrawGradient.h 29 SkTDScalarArray offsets; member in class:SkGradient
  /external/skia/src/animator/
SkDrawGradient.h 29 SkTDScalarArray offsets; member in class:SkDrawGradient
  /external/webkit/Source/WebCore/platform/text/
TextCodecICU.h 58 const char* sourceLimit, int32_t* offsets, bool flush, UErrorCode& err);
  /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...]
  /external/protobuf/src/google/protobuf/
dynamic_message.cc 178 // important (the prototype must be deleted *before* the offsets).
179 scoped_array<int> offsets; member in struct:google::protobuf::DynamicMessage::TypeInfo
244 void* field_ptr = OffsetToPointer(type_info_->offsets[i]);
283 type_info_->offsets[i]));
324 void* field_ptr = OffsetToPointer(type_info_->offsets[i]);
391 void* field_ptr = OffsetToPointer(type_info_->offsets[i]);
486 // Compute size and offsets.
487 int* offsets = new int[type->field_count()]; local
488 type_info->offsets.reset(offsets);
    [all...]
  /bionic/libc/tools/zoneinfo/
ZoneCompactor.java 83 // Raw GMT offsets by zone name
84 private Map<String,Integer> offsets = new HashMap<String,Integer>(); field in class:ZoneCompactor
137 offsets.put(s, gmtOffset);
151 offsets.put(from, offsets.get(to));
168 // Write dummy values for the three offsets, and remember where we need to seek back to later
193 f.writeInt(offsets.get(zoneName));
213 // Go back and fix up the offsets in the header.

Completed in 2752 milliseconds

1 23 4 5 6 7 8 91011>>