Searched refs:segment (Results 1 - 25 of 92) sorted by relevance

1234

/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DTimelineRecordBar.css31 .timeline-record-bar > .segment {
41 .timeline-record-bar:not(.has-inactive-segment) > .segment {
46 .timeline-record-bar > .segment.inactive {
50 .timeline-record-bar > .segment.inactive,
51 .timeline-record-bar.unfinished > .segment {
57 .timeline-record-bar.has-inactive-segment > .segment:not(.inactive) {
62 :focus .selected .timeline-record-bar > .segment {
67 :focus .selected .timeline-record-bar > .segment
[all...]
H A DOverviewTimelineView.css64 .timeline-view.overview > .data-grid tr.parent:not(.expanded) td.graph-column .timeline-record-bar:not(.has-inactive-segment) > .segment {
68 .timeline-view.overview > .data-grid tr.parent:not(.expanded).selected td.graph-column .timeline-record-bar:not(.has-inactive-segment) > .segment {
72 .timeline-view.overview > .data-grid:focus tr.parent:not(.expanded).selected td.graph-column .timeline-record-bar:not(.has-inactive-segment) > .segment {
76 .timeline-view.overview > .data-grid tr.parent:not(.expanded) td.graph-column .timeline-record-bar.has-inactive-segment > .segment:not(.inactive) {
80 .timeline-view.overview > .data-grid tr.parent:not(.expanded).selected td.graph-column .timeline-record-bar.has-inactive-segment > .segment
[all...]
H A DLayoutTimelineOverviewGraph.css31 .timeline-overview-graph.layout > .timeline-record-bar > .segment {
H A DScriptTimelineOverviewGraph.css31 .timeline-overview-graph.script > .timeline-record-bar > .segment {
H A DNetworkTimelineOverviewGraph.css39 .timeline-overview-graph.network > .graph-row > .timeline-record-bar > .segment:not(.inactive) {
43 .timeline-overview-graph.network:nth-child(even) > .graph-row > .timeline-record-bar > .segment:not(.inactive) {
/macosx-10.10.1/cxxfilt-11/cxxfilt/include/elf/
H A Dinternal.h64 unsigned long p_type; /* Identifies program segment type */
230 /* Next program segment. */
232 /* Program segment type. */
234 /* Program segment flags. */
236 /* Program segment physical address. */
238 /* Program segment virtual address offset from section vma. */
240 /* Program segment alignment. */
248 /* Whether the p_align field is valid; if not, PT_LOAD segment
251 /* Whether this segment includes the file header. */
253 /* Whether this segment include
[all...]
/macosx-10.10.1/shell_cmds-179/path_helper/
H A Dpath_helper.c36 // Append path segment if it does not exist. Reallocate
39 int append_path_segment(char** path, const char* segment) { argument
40 if (*path == NULL || segment == NULL) return -1;
43 size_t seglen = strlen(segment);
47 // Does the segment already exist in the path?
48 // (^|:)segment(:|$)
49 char* match = strstr(*path, segment);
55 match = strstr(match+1, segment);
58 // size = pathlen + ':' + segment + '\0'
64 strlcat(*path, segment, siz
83 char* segment = malloc(size); local
136 char* segment = read_segment(line, len); local
[all...]
/macosx-10.10.1/xnu-2782.1.97/libkern/c++/
H A DOSRuntime.cpp265 * Given a pointer to a mach object segment, iterate the segment to
272 kernel_segment_command_t * segment,
283 for (section = firstsect(segment);
285 section = nextsect(segment, section)) {
300 "Null destructor in kext %s segment %s!",
314 OSRuntimeUnloadCPPForSegment(kernel_segment_command_t * segment) { argument
315 OSRuntimeUnloadCPPForSegmentInKmod(segment, NULL);
327 kernel_segment_command_t * segment; local
334 segment
271 OSRuntimeUnloadCPPForSegmentInKmod( kernel_segment_command_t * segment, kmod_info_t * kmodInfo) argument
412 kernel_segment_command_t * segment = NULL; // do not free local
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/tklib/tklib/modules/plotchart/
H A Dplotbind.tcl88 # Move the indicated segment
92 # segment Segment to move
99 # If the segment is "auto", then we accept button clicks
101 proc ::Plotchart::PieExplodeSegment {w segment {button 0}} {
108 if { $segment == "auto" } {
112 if { $segment < 0 || $segment >= [llength $scaling($w,angles)] } {
121 if { $segment == $scaling($w,exploded) } {
124 set angle_bgn [lindex $scaling($w,angles) $segment]
125 set angle_ext [lindex $scaling($w,extent) $segment]
[all...]
/macosx-10.10.1/BerkeleyDB-21/db/os_vxworks/
H A Dos_vx_map.c28 * that memory, and issue small-integer segment IDs which index the list of
33 void *segment; /* Segment address. */ member in struct:__anon359
73 /* Try to find an already existing segment. */
83 __db_errx(env, "segment %s does not exist",
193 __db_errx(env, "shared memory segment already exists");
232 if (p->segment != NULL) {
233 __os_free(env, p->segment);
234 p->segment = NULL;
249 * Creates a new segment of the specified size, optionally with the
271 if ((ret = __os_calloc(env, 1, rp->size, &p->segment)) !
[all...]
/macosx-10.10.1/ICU-531.30/icuSources/common/unicode/
H A Dcaniter.h184 // we have a segment, in NFD. Find all the strings that are canonically equivalent to it.
185 UnicodeString *getEquivalents(const UnicodeString &segment, int32_t &result_len, UErrorCode &status); //private String[] getEquivalents(String segment)
187 //Set getEquivalents2(String segment);
188 Hashtable *getEquivalents2(Hashtable *fillinResult, const UChar *segment, int32_t segLen, UErrorCode &status);
189 //Hashtable *getEquivalents2(const UnicodeString &segment, int32_t segLen, UErrorCode &status);
192 * See if the decomposition of cp2 is at segment starting at segmentPos
196 //Set extract(int comp, String segment, int segmentPos, StringBuffer buffer);
197 Hashtable *extract(Hashtable *fillinResult, UChar32 comp, const UChar *segment, int32_t segLen, int32_t segmentPos, UErrorCode &status);
198 //Hashtable *extract(UChar32 comp, const UnicodeString &segment, int32_
[all...]
/macosx-10.10.1/emacs-93/emacs/src/
H A Dunexnext.c45 * pages it vm_allocated and write only those out into the data segment.
262 struct segment_command *segment; local
292 segment = ((struct segment_command *)
294 if (strcmp(segment->segname, SEG_DATA) == 0) {
295 fdatastart = segment->fileoff;
296 fdatasize = segment->filesize;
298 segment->filesize);
299 segment->vmsize = data_size;
300 segment->filesize = data_size;
301 dataseg_vmaddr = segment
[all...]
/macosx-10.10.1/ICU-531.30/icuSources/i18n/
H A Dnortrans.cpp135 UnicodeString segment; local
142 segment.remove();
144 segment.append(c);
154 fNorm2.normalize(segment, normalized, errorCode);
158 if(segment != normalized) {
/macosx-10.10.1/hfs-285/fsck_hfs/dfalib/
H A DVolumeBitmapCheck.c26 * partially full. If a segment does not exist in the tree, it
28 * 1. Full if the coresponding segment map bit is set
79 UInt32* gFullBitmapSegment; /* points to a FULL bitmap segment*/
80 UInt32* gEmptyBitmapSegment; /* points to an EMPTY bitmap segment*/
90 UInt32 segment; member in struct:BMS_Node
105 static BMS_Node * BMS_Lookup(UInt32 segment);
106 static BMS_Node * BMS_Insert(UInt32 segment, int segmentType);
107 static BMS_Node * BMS_Delete(UInt32 segment);
184 plog(" %d full segments, %d segment nodes (max depth was %d nodes)\n",
204 * Description: Return bitmap segment correspondin
232 UInt32 segment; local
311 UInt32 segment; local
1302 BMS_Lookup(UInt32 segment) argument
1322 register UInt32 segment; local
1356 BMS_Insert(UInt32 segment, int segmentType) argument
1385 BMS_Delete(UInt32 segment) argument
[all...]
/macosx-10.10.1/xnu-2782.1.97/iokit/Kernel/
H A DIOMemoryCursor.cpp197 void IONaturalMemoryCursor::outputSegment(PhysicalSegment segment, argument
201 ((PhysicalSegment *) outSegments)[outSegmentIndex] = segment;
244 IOPhysicalAddress * segment; local
246 segment = &((PhysicalSegment *) inSegments)[inSegmentIndex].location;
247 OSWriteBigInt(segment, 0, inSegment.location);
248 OSWriteBigInt(segment, sizeof(IOPhysicalAddress), inSegment.length);
291 IOPhysicalAddress * segment; local
293 segment = &((PhysicalSegment *) inSegments)[inSegmentIndex].location;
294 OSWriteLittleInt(segment, 0, inSegment.location);
295 OSWriteLittleInt(segment, sizeo
[all...]
/macosx-10.10.1/ICU-531.30/icuSources/layout/
H A DContextualGlyphSubstProc2.cpp100 const LookupSegment *segment = lookupTable2->lookupSegment(lookupTable2->segments, gid); local
101 if (segment != NULL) {
102 newGlyph = SWAPW(segment->value);
116 const LEReferenceTo<LookupSingle> segment = lookupTable6->lookupSingle(lookupTable6->entries, gid); local
117 if (segment != NULL) {
118 newGlyph = SWAPW(segment->value);
H A DStateTableProcessor2.cpp126 const LookupSegment *segment = local
128 if (segment != NULL && LE_SUCCESS(success)) {
129 classCode = SWAPW(segment->value);
167 const LookupSingle *segment = lookupTable6->lookupSingle(lookupTable6, lookupTable6->entries, gid, success); local
168 if (segment != NULL) {
169 classCode = SWAPW(segment->value);
/macosx-10.10.1/IOPCIFamily-239.1.2/tools/
H A Dpcidump.c12 static uint32_t configRead32(io_connect_t connect, uint32_t segment, argument
27 param.address.pci.segment = segment;
40 static void configWrite32(io_connect_t connect, uint32_t segment, argument
56 param.address.pci.segment = segment;
128 io_registry_entry_t lookService(uint32_t segment, argument
186 dumpDevice(io_connect_t connect, uint32_t segment, argument
206 data[off >> 2] = configRead32(connect, segment, bus, device, fn, off);
213 service = lookService(segment, bu
268 uint32_t segment = 0; local
[all...]
/macosx-10.10.1/OpenSSL098-52/src/crypto/bio/
H A Dbss_rtcp.c223 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 );
/macosx-10.10.1/groff-38/groff/src/preproc/pic/
H A Dobject.h160 struct segment { struct
163 segment *next;
164 segment(const position &, int, segment *);
195 segment *segment_list;
/macosx-10.10.1/ICU-531.30/icuSources/common/
H A Dcaniter.cpp228 // allocate the arrays, and find the strings that are CE to each segment
242 // for each segment, get all the combinations that can produce
341 // we have a segment, in NFD. Find all the strings that are canonically equivalent to it.
342 UnicodeString* CanonicalIterator::getEquivalents(const UnicodeString &segment, int32_t &result_len, UErrorCode &status) { argument
354 int32_t segLen = segment.extract(USeg, 256, status);
384 // TODO: check if operator == is semanticaly the same as attempt.equals(segment)
385 if (attempt==segment) {
430 Hashtable *CanonicalIterator::getEquivalents2(Hashtable *fillinResult, const UChar *segment, int32_t segLen, UErrorCode &status) { argument
436 //if (PROGRESS) printf("Adding: %s\n", UToS(Tr(segment)));
438 UnicodeString toPut(segment, segLe
498 extract(Hashtable *fillinResult, UChar32 comp, const UChar *segment, int32_t segLen, int32_t segmentPos, UErrorCode &status) argument
[all...]
/macosx-10.10.1/libxml2-26/libxml2/
H A Duri.c536 * @empty: allow an empty segment
538 * Parse a segment and fills in the appropriate fields
541 * segment = *pchar
542 * segment-nz = 1*pchar
543 * segment-nz-nc = 1*( unreserved / pct-encoded / sub-delims / "@" )
544 * ; non-zero-length segment without any colon ":"
573 * path-abempty = *( "/" segment )
613 * path-absolute = "/" [ segment-nz *( "/" segment ) ]
659 * path-rootless = segment
1742 xmlChar *ret, *segment = NULL; local
[all...]
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-core/libxml2-src/
H A Duri.c505 * @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
1821 xmlChar *ret, *segment = NULL; local
[all...]
/macosx-10.10.1/xnu-2782.1.97/iokit/IOKit/
H A DIOMemoryCursor.h42 specific memory cursors must inherit from, but a memory cursor can be created without a specific format subclass by just providing a segment function to the initializers. This class does the difficult stuff of dividing a memory descriptor into a physical scatter/gather list appropriate for the target hardware.
44 A driver is expected to create a memory cursor and configure it to the limitations of its DMA hardware; for instance the memory cursor used by the FireWire SBP-2 protocol has a maximum physical segment size of 2^16 - 1 but the actual transfer size is unlimited. Thus it would create a cursor with a maxSegmentSize of 65535 and a maxTransfer size of UINT_MAX. It would also provide a SegmentFunction that can output a pagelist entry.
47 void IONaturalMemoryCursor::outputSegment(PhysicalSegment segment,<br>
51 ((PhysicalSegment *) outSegments)[outSegmentIndex] = segment;<br>
77 @discussion Pointer to a C function that outputs a single physical segment to an element in the array as defined by the segments and segmentIndex parameters.
78 @param segment The physical address and length that is next to be output.
80 @param segmentIndex Index to output 'segment' in the 'segments' array.
82 typedef void (*SegmentFunction)(PhysicalSegment segment,
94 /*! @var maxSegmentSize Maximum size of one segment in a scatter/gather list */
109 @param outSegFunc SegmentFunction to call to output one physical segment
[all...]
/macosx-10.10.1/IOKitUser-1050.1.21/kext.subproj/
H A Dmacho_util.c925 struct segment_command *segment = NULL; local
937 segment = (struct segment_command *) lc;
938 if (!strncmp(segment->segname, segname, sizeof(segment->segname))) {
941 segment = NULL;
948 return segment;
957 struct segment_command_64 *segment = NULL; local
969 segment = (struct segment_command_64 *) lc;
970 if (!strncmp(segment->segname, segname, sizeof(segment
990 struct segment_command *segment = NULL; local
1021 struct segment_command_64 *segment = NULL; local
[all...]

Completed in 256 milliseconds

1234