| /bionic/libc/arch-x86/bionic/ | 
| __set_tls.c | 67 /* we implement thread local storage through the gs: segment descriptor 68  * we create a segment descriptor for the tls
 72     int   rc, segment;  local
 87     segment = _tls_desc.entry_number*8 + 3;
 89         "   movw %w0, %%gs" :: "q"(segment)
 
 | 
| /external/icu4c/i18n/ | 
| nortrans.cpp | 134     UnicodeString segment;  local 141         segment.remove();
 143             segment.append(c);
 153         fNorm2.normalize(segment, normalized, errorCode);
 157         if(segment != normalized) {
 
 | 
| /external/sonivox/arm-wt-22k/host_src/ | 
| jet.h | 62     EAS_U8      segment;  member in struct:s_jet_event_tag 140  * Queue a segment for playback
 
 | 
| /external/webkit/WebCore/svg/ | 
| SVGAnimateElement.cpp | 249                 RefPtr<SVGPathSeg> segment = m_animatedPath->getItem(n, ec);  local 250                 valueToApply.append(segment->toString() + " ");
 
 | 
| SVGPathSegList.cpp | 61         SVGPathSeg* segment = getItem(i, ec).get();  local 65         switch (segment->pathSegType()) {
 68             SVGPathSegMovetoAbs* moveTo = static_cast<SVGPathSegMovetoAbs*>(segment);
 74             SVGPathSegLinetoAbs* lineTo = static_cast<SVGPathSegLinetoAbs*>(segment);
 80             SVGPathSegCurvetoCubicAbs* curveTo = static_cast<SVGPathSegCurvetoCubicAbs*>(segment);
 111         SVGPathSeg* segment = getItem(i, ec).get();  local
 114         switch (segment->pathSegType()) {
 117                 SVGPathSegMovetoAbs* moveTo = static_cast<SVGPathSegMovetoAbs*>(segment);
 123                 SVGPathSegLinetoAbs* lineTo = static_cast<SVGPathSegLinetoAbs*>(segment);
 129                 SVGPathSegCurvetoCubicAbs* curveTo = static_cast<SVGPathSegCurvetoCubicAbs*>(segment);
 [all...]
 | 
| /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/configurations/ | 
| LanguageQualifier.java | 37      * Creates and returns a qualifier from the given folder segment. If the segment is incorrect, 39      * @param segment the folder segment from which to create a qualifier.
 42     public static LanguageQualifier getQualifier(String segment) {
 43         if (sLanguagePattern.matcher(segment).matches()) {
 45             qualifier.mValue = segment;
 53      * Returns the folder name segment for the given value. This is equivalent to calling
 58         String segment = value.toLowerCase();  local
 59         if (sLanguagePattern.matcher(segment).matches())
 [all...]
 | 
| RegionQualifier.java | 38      * Creates and returns a qualifier from the given folder segment. If the segment is incorrect, 40      * @param segment the folder segment from which to create a qualifier.
 43     public static RegionQualifier getQualifier(String segment) {
 44         Matcher m = sRegionPattern.matcher(segment);
 55      * Returns the folder name segment for the given value. This is equivalent to calling
 61             String segment = "r" + value.toUpperCase(); //$NON-NLS-1$  local
 62             if (sRegionPattern.matcher(segment).matches()) {
 63                 return segment;
 [all...]
 | 
| /bionic/libc/kernel/arch-x86/asm/ | 
| desc_defs.h | 38  u16 segment;  member in struct:gate_struct 
 | 
| /cts/tests/src/android/content/cts/ | 
| MockContentProvider.java | 85         String segment;  local 97             segment = uri.getPathSegments().get(1);
 98             count = db.delete("TestTable1", "_id=" + segment +
 106             segment = uri.getPathSegments().get(1);
 107             count = db.delete("TestTable2", "_id=" + segment +
 225         String segment;  local
 234             segment = uri.getPathSegments().get(1);
 235             count = db.update("TestTable1", values, "_id=" + segment +
 245             segment = uri.getPathSegments().get(1);
 246             count = db.update("TestTable2", values, "_id=" + segment
 [all...]
 | 
| /development/ndk/platforms/android-5/arch-x86/include/asm/ | 
| desc_defs.h | 38  u16 segment;  member in struct:gate_struct 
 | 
| /external/emma/core/java12/com/vladium/util/ | 
| Files.java | 100             String segment = path [i];  local 101             if (segment == null) throw new IllegalArgumentException ("null input: path[" + i + "]");
 103             final StringTokenizer tokenizer = new StringTokenizer (segment, separators);
 
 | 
| /external/icu4c/common/ | 
| normlzr.cpp | 482     UnicodeString segment(text->next32PostInc()); 489         segment.append(c);
 493     fNorm2->normalize(segment, buffer, errorCode);
 505     UnicodeString segment;  local
 508         segment.insert(0, c);
 515     fNorm2->normalize(segment, buffer, errorCode);
 
 | 
| /external/kernel-headers/original/asm-x86/ | 
| desc_defs.h | 6  * Segment descriptor structure definitions, usable from both x86_64 and i386 14 // 8 byte segment descriptor
 35 	u16 segment;  member in struct:gate_struct
 
 | 
| /external/openssl/crypto/bio/ | 
| bss_rtcp.c | 223     int status, i, segment, length;  local 229     for ( i = 0; i < inl; i += segment ) {
 230 	segment = inl - i;
 231 	if ( segment > sizeof(ctx->msg.data) ) segment = sizeof(ctx->msg.data);
 234 	ctx->msg.length = segment;
 235 	memmove ( ctx->msg.data, &in[i], segment );
 236 	status = put ( b->num, (char *) &ctx->msg, segment + RPC_HDR_SIZE );
 
 | 
| /external/quake/quake/src/WinQuake/ | 
| dos_v2.cpp | 163 	int segment;
  local 165 	segment = ptr2real(ptr) >> 4;
 167 		if (seginfo[i].rm_segment == segment)
 
 | 
| /external/v8/src/ | 
| zone.cc | 47 // chained together forming a LIFO structure with the newest segment 48 // available as Segment::head(). Segments are allocated using malloc()
 51 class Segment {
 53   Segment* next() const { return next_; }
 57   int capacity() const { return size_ - sizeof(Segment); }
 59   Address start() const { return address(sizeof(Segment)); }
 62   static Segment* head() { return head_; }
 63   static void set_head(Segment* head) { head_ = head; }
 65   // Creates a new segment, sets it size, and pushes it to the front
 66   // of the segment chain. Returns the new segment
 178  Segment* segment = Segment::New(new_size);  local
 [all...]
 | 
| /external/webkit/WebCore/platform/ | 
| SharedBuffer.cpp | 134     char* segment;  local 136         segment = allocateSegment();
 137         m_segments.append(segment);
 139         segment = m_segments.last() + positionInSegment;
 145         memcpy(segment, data, bytesToCopy);
 151         segment = allocateSegment();
 152         m_segments.append(segment);
 233     unsigned segment = segmentIndex(position);  local
 234     ASSERT(segment < segments);
 237     someData = m_segments[segment] + positionInSegment
 [all...]
 | 
| /frameworks/base/core/tests/coretests/src/android/app/activity/ | 
| LocalProvider.java | 138                 String segment = url.getPathSegments().get(1);  local 139                 rowId = Long.parseLong(segment);
 
 | 
| /frameworks/base/media/libstagefright/codecs/g711/dec/ | 
| G711Decoder.cpp | 202         int32_t segment = exponent + 1;  local 205         int32_t step = 4 << segment;
 
 | 
| /packages/apps/DeskClock/src/com/android/deskclock/ | 
| AlarmProvider.java | 148                 String segment = url.getPathSegments().get(1);  local 149                 rowId = Long.parseLong(segment);
 192                 String segment = url.getPathSegments().get(1);  local
 193                 rowId = Long.parseLong(segment);
 195                     where = "_id=" + segment;
 197                     where = "_id=" + segment + " AND (" + where + ")";
 
 | 
| /packages/providers/ContactsProvider/src/com/android/providers/contacts/ | 
| ContactLookupKey.java | 129             // Parse segment type 230             LookupKeySegment segment = new LookupKeySegment();  local
 231             segment.accountHashCode = hashCode;
 232             segment.lookupType = lookupType;
 233             segment.rawContactId = rawContactId;
 234             segment.key = key;
 235             segment.contactId = -1;
 236             list.add(segment);
 
 | 
| /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/asm/ | 
| desc_defs.h | 38  u16 segment;  member in struct:gate_struct 
 | 
| /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/asm/ | 
| desc_defs.h | 38  u16 segment;  member in struct:gate_struct 
 | 
| /external/guava/src/com/google/common/collect/ | 
| CustomConcurrentHashMap.java | 525     // Spread bits to regularize both segment and index locations, 576      * code are used to choose the segment.
 582      * end up in the same segment from also ending up in the same bucket.
 589     final Segment[] segments;
 628         this.segments[i] = new Segment(segmentSize);
 671     Segment[] newSegmentArray(int ssize) {
 673       // a segment array (the compile has a tough time with arrays of
 677       return (Segment[]) Array.newInstance(Segment.class, ssize);
 683      * Returns the segment that should be used for key with given has
 2013  Segment segment = segmentFor(hash);  local
 [all...]
 | 
| /external/bluetooth/glib/glib/ | 
| garray.c | 108   gchar* segment;  local 115       segment = NULL;
 118     segment = array->data;
 122   return segment;
 388   gpointer* segment;  local
 395       segment = NULL;
 398     segment = array->pdata;
 402   return segment;
 
 |