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

1 23 4 5 6

  /external/webkit/Source/WebCore/platform/image-decoders/png/
PNGImageDecoder.cpp 137 const char* segment; local
138 while (unsigned segmentLength = data.getSomeData(segment, m_readOffset)) {
141 png_process_data(m_png, m_info, reinterpret_cast<png_bytep>(const_cast<char*>(segment)), segmentLength);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CdmaSMSDispatcher.java 234 * @param pdu The WAP-WDP PDU segment
248 int segment = (0xFF & pdu[index++]); // >= 0 local
250 if (segment >= totalSegments) {
251 Rlog.e(TAG, "WDP bad segment #" + segment + " expecting 0-" + (totalSegments - 1));
255 // Only the first segment contains sourcePort and destination Port
258 if (segment == 0) {
259 //process WDP segment
276 + ", ID = " + referenceNumber + ", segment# = " + segment + '/' + totalSegments)
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppProvider.java 411 String segment = uri.getPathSegments().get(1); local
412 rowId = Long.parseLong(segment);
452 String segment = uri.getPathSegments().get(1); local
453 long rowId = Long.parseLong(segment);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/ui/
ReferenceChooserDialog.java 206 Object segment = treeSelection.getSegment(0); local
207 if (segment instanceof ResourceType) {
208 type = (ResourceType) segment;
  /external/elfutils/src/
ld.c 1472 struct output_segment *segment = ld_state.output_segments->next; local
    [all...]
  /external/freetype/src/autofit/
afhints.c 24 /* Get new segment for given axis. */
32 AF_Segment segment = NULL; local
39 FT_Int big_max = (FT_Int)( FT_INT_MAX / sizeof ( *segment ) );
58 segment = axis->segments + axis->num_segments++;
61 *asegment = segment;
526 * note that we don't need to free the segment and edge
1157 /* PASS 1: Move segment points to edge positions */
aflatin.c 299 /* segment; we first need to find in which contour the extremum */
338 /* now set the `round' flag depending on the segment's kind */
732 AF_Segment segment = NULL; local
780 FT_Pos min_pos = 32000; /* minimum segment pos != min_coord */
781 FT_Pos max_pos = -32000; /* maximum segment pos != max_coord */
825 /* we are just leaving an edge; record a new segment! */
826 segment->last = point;
827 segment->pos = (FT_Short)( ( min_pos + max_pos ) >> 1 );
829 /* a segment is round if either its first or last point */
831 if ( ( segment->first->flags | point->flags )
    [all...]
aflatin2.c 292 /* segment; we first need to find in which contour the extremum */
331 /* now, set the `round' flag depending on the segment's kind */
684 AF_Segment segment = NULL; local
745 else /* otherwise, find first segment start, if any */
763 /* we're at the start of a new segment */
790 /* record new segment */
791 error = af_axis_hints_new_segment( axis, memory, &segment );
795 segment[0] = seg0;
796 segment->dir = first->out_dir;
797 segment->first = first
    [all...]
  /external/freetype/src/truetype/
ttgxvar.c 285 GX_AVarSegment segment; local
312 segment = &blend->avar_segment[0];
313 for ( i = 0; i < axisCount; ++i, ++segment )
315 segment->pairCount = FT_GET_USHORT();
316 if ( FT_NEW_ARRAY( segment->correspondence, segment->pairCount ) )
329 for ( j = 0; j < segment->pairCount; ++j )
331 segment->correspondence[j].fromCoord =
333 segment->correspondence[j].toCoord =
    [all...]
  /external/grub/stage2/
asm.S 303 /* copy the original int13 handler segment:offset */
342 .word 0 /* segment */
641 /* compute the segment */
740 * chain_stage1(segment, offset, part_table_addr)
742 * This starts another stage1 loader, at segment:offset.
755 /* store new segment */
757 movw %ax, segment
776 * chain_stage2(segment, offset, second_sector)
778 * This starts another stage2 loader, at segment:offset. It presumes
791 /* store new segment */
2309 segment: label
    [all...]
  /external/icu4c/common/
ustring.cpp 1369 const char *segment = src; local
    [all...]
  /external/libxml2/
uri.c 505 * @empty: allow an empty segment
507 * Parse a segment and fills in the appropriate fields
510 * segment = *pchar
511 * segment-nz = 1*pchar
512 * segment-nz-nc = 1*( unreserved / pct-encoded / sub-delims / "@" )
513 * ; non-zero-length segment without any colon ":"
542 * path-abempty = *( "/" segment )
582 * path-absolute = "/" [ segment-nz *( "/" segment ) ]
628 * path-rootless = segment-nz *( "/" segment
1821 xmlChar *ret, *segment = NULL; local
    [all...]
  /external/webkit/Source/WebCore/inspector/front-end/
NetworkPanel.js     [all...]
  /external/webkit/Source/WebCore/platform/graphics/gpu/
LoopBlinnPathProcessor.cpp 64 using LoopBlinnPathProcessorImplementation::Segment;
90 class Segment;
113 struct ValueToString<LoopBlinnPathProcessorImplementation::Segment*> {
114 static String string(LoopBlinnPathProcessorImplementation::Segment* const& value)
124 // Segment
127 // Describes a segment of the path: either a cubic or a line segment.
131 class Segment {
132 WTF_MAKE_NONCOPYABLE(Segment);
140 Segment()
645 Segment* segment = m_arena->allocateObject<Segment>(); local
669 Segment* segment = m_arena->allocateObject<Segment>(); local
681 Segment* segment = m_arena->allocateObject<Segment>(); local
692 Segment* segment = m_arena->allocateObject<Segment>(); local
878 Segment* segment; member in struct:WebCore::__anon17851::SweepData
    [all...]
  /external/webp/src/enc/
frame.c 215 // Finalize Segment probability based on the coding tree
472 const int segment = it->mb_->segment_; local
513 it->bit_count_[segment][i16] += it->luma_bits_;
514 it->bit_count_[segment][2] += it->uv_bits_;
701 VP8SetSegmentParams(enc, q); // setup segment quantizations and filters
702 SetSegmentProbas(enc); // compute segment probabilities
  /frameworks/base/services/java/com/android/server/content/
ContentService.java 745 String segment = getUriSegment(uri, index); local
746 if (segment == null) {
752 if (node.mName.equals(segment)) {
760 ObserverNode node = new ObserverNode(segment);
828 String segment = null; local
    [all...]
  /development/samples/JetBoy/src/com/example/android/jetboy/
JetBoyView.java 105 public JetGameEvent(JetPlayer player, short segment, byte track, byte channel,
108 this.segment = segment;
116 public short segment; field in class:JetBoyView.JetGameEvent
452 // JET info: in this example, the game uses segment 0 for the duration of the game play,
453 // JET info: and plays segment 1 several times as the "outro" music, so we're going to
458 // JET info: it is located at segment 0
733 processJetEvent(jetEvent.player, jetEvent.segment, jetEvent.track,
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
CollisionSystem.java 95 * The first intersecting segment that is found is returned; in the case where more than one
96 * segment is found, the segment closest to the start point is returned.
429 * returns the closest intersecting segment, if any exists.
443 LineSegment segment = (LineSegment)segmentArray[x]; local
448 movementDirection.dot(segment.mNormal) : -1.0f;
451 (excludeObject == null || segment.owner != excludeObject) &&
452 segment.calculateIntersection(startPoint, endPoint, hitPoint)) {
458 normalX = segment.mNormal.x;
459 normalY = segment.mNormal.y
490 LineSegment segment = (LineSegment)segmentArray[x]; local
    [all...]
  /external/stressapptest/src/
worker.cc 2829 int64 segment = (block_num \/ blocks_per_segment_) % num_segments; local
    [all...]
  /external/webkit/Source/WebCore/editing/
TextIterator.cpp 2532 const TextSegment& segment = textSegments->at(i); local
    [all...]
  /frameworks/compile/mclinker/lib/Target/
GNULDBackend.cpp 387 // ----- segment symbols ----- //
567 // ----- segment symbols ----- //
668 // the value of a TLS symbol is the offset to the TLS segment
1821 ELFSegment& segment = *seg; local
    [all...]
  /hardware/libhardware_legacy/audio/
AudioPolicyManagerBase.cpp 2617 int segment = 0; local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.ui.forms_3.5.2.r36_v20100702.jar 
  /external/libnfc-nci/src/nfc/int/
rw_int.h 148 BOOLEAN b_rseg; /* Segment 0 read from tag */
151 UINT8 segment; /* Current Tag segment */ member in struct:__anon10631
173 UINT8 attr_seg; /* Tag segment for which attributes are prepared */
174 UINT8 lock_attr_seg; /* Tag segment for which lock attributes are prepared */
323 UINT8 attr_seg; /* Tag segment for which attributes are prepared */
324 UINT8 lock_attr_seg; /* Tag segment for which lock attributes are prepared */
325 UINT8 segment; /* Current operating segment */ member in struct:__anon10635
    [all...]
  /external/libvpx/libvpx/nestegg/src/
nestegg.c 252 struct segment { struct
293 struct segment segment; member in struct:nestegg
434 E_MASTER(ID_SEEK_HEAD, TYPE_MASTER, struct segment, seek_head),
435 E_SINGLE_MASTER(ID_INFO, TYPE_MASTER, struct segment, info),
436 E_MASTER(ID_CLUSTER, TYPE_MASTER, struct segment, cluster),
437 E_SINGLE_MASTER(ID_TRACKS, TYPE_MASTER, struct segment, tracks),
438 E_SINGLE_MASTER(ID_CUES, TYPE_MASTER, struct segment, cues),
444 E_SINGLE_MASTER_O(ID_SEGMENT, TYPE_MASTER, nestegg, segment),
1155 if (ne_get_uint(ctx->segment.info.timecode_scale, &scale) != 0
    [all...]

Completed in 1276 milliseconds

1 23 4 5 6