Home
last modified time | relevance | path

Searched refs:sec (Results 1 – 25 of 287) sorted by relevance

12345678910>>...12

/external/libxslt/libxslt/
Dsecurity.c111 xsltFreeSecurityPrefs(xsltSecurityPrefsPtr sec) { in xsltFreeSecurityPrefs() argument
112 if (sec == NULL) in xsltFreeSecurityPrefs()
114 xmlFree(sec); in xsltFreeSecurityPrefs()
128 xsltSetSecurityPrefs(xsltSecurityPrefsPtr sec, xsltSecurityOption option, in xsltSetSecurityPrefs() argument
131 if (sec == NULL) in xsltSetSecurityPrefs()
135 sec->readFile = func; return(0); in xsltSetSecurityPrefs()
137 sec->createFile = func; return(0); in xsltSetSecurityPrefs()
139 sec->createDir = func; return(0); in xsltSetSecurityPrefs()
141 sec->readNet = func; return(0); in xsltSetSecurityPrefs()
143 sec->writeNet = func; return(0); in xsltSetSecurityPrefs()
[all …]
Dsecurity.h51 typedef int (*xsltSecurityCheck) (xsltSecurityPrefsPtr sec,
61 xsltFreeSecurityPrefs (xsltSecurityPrefsPtr sec);
63 xsltSetSecurityPrefs (xsltSecurityPrefsPtr sec,
67 xsltGetSecurityPrefs (xsltSecurityPrefsPtr sec,
71 xsltSetDefaultSecurityPrefs (xsltSecurityPrefsPtr sec);
76 xsltSetCtxtSecurityPrefs (xsltSecurityPrefsPtr sec,
80 xsltSecurityAllow (xsltSecurityPrefsPtr sec,
84 xsltSecurityForbid (xsltSecurityPrefsPtr sec,
91 xsltCheckWrite (xsltSecurityPrefsPtr sec,
95 xsltCheckRead (xsltSecurityPrefsPtr sec,
/external/valgrind/main/coregrind/
Dm_transtab.c648 Sector* sec = &sectors[sno]; in find_TTEntry_from_hcode() local
649 XArray* /* of HostExtent */ host_extents = sec->host_extents; in find_TTEntry_from_hcode()
669 if (sec->tt[tteNo].status == Deleted) in find_TTEntry_from_hcode()
671 vg_assert(sec->tt[tteNo].status == InUse); in find_TTEntry_from_hcode()
675 vg_assert((UChar*)sec->tt[tteNo].tcptr <= (UChar*)hcode); in find_TTEntry_from_hcode()
980 UInt addEClassNo ( /*MOD*/Sector* sec, Int ec, UShort tteno ) in addEClassNo() argument
990 if (sec->ec2tte_used[ec] >= sec->ec2tte_size[ec]) { in addEClassNo()
992 vg_assert(sec->ec2tte_used[ec] == sec->ec2tte_size[ec]); in addEClassNo()
994 old_sz = sec->ec2tte_size[ec]; in addEClassNo()
995 old_ar = sec->ec2tte[ec]; in addEClassNo()
[all …]
/external/iproute2/examples/
Dcbqinit.eth125 $TC class add dev $DEVICE parent 1:0 classid :1 est 1sec 8sec cbq \
35 $TC class add dev $DEVICE parent 1:1 classid :2 est 1sec 8sec cbq \
47 $TC class add dev $DEVICE parent 1:1 classid :3 est 2sec 16sec cbq \
55 $TC class add dev $DEVICE parent 1:1 classid :4 est 1sec 8sec cbq \
73 $TC class add dev $DEVICE parent 1:7FFE classid 1:7FFF est 4sec 32sec cbq \
/external/elfutils/src/
Dunstrip.c935 const struct section *sec = &sections[i]; in find_alloc_sections_prelink() local
936 if (sec->shdr.sh_type == SHT_PROGBITS in find_alloc_sections_prelink()
937 && !(sec->shdr.sh_flags & SHF_ALLOC) in find_alloc_sections_prelink()
938 && !strcmp (sec->name, ".gnu.prelink_undo")) in find_alloc_sections_prelink()
940 undo = sec->scn; in find_alloc_sections_prelink()
1009 struct section *sec = &undo_sections[undo_nalloc]; in find_alloc_sections_prelink() local
1012 #define COPY(field) sec->shdr.field = shdr.s32[i].field in find_alloc_sections_prelink()
1026 sec->shdr = shdr.s64[i]; in find_alloc_sections_prelink()
1027 if (sec->shdr.sh_flags & SHF_ALLOC) in find_alloc_sections_prelink()
1029 sec->shdr.sh_addr += bias; in find_alloc_sections_prelink()
[all …]
/external/skia/legacy/src/core/
DSkBitmapProcState.h114 #define PACK_TWO_SHORTS(pri, sec) ((pri) << 16 | (sec)) argument
118 #define PACK_TWO_SHORTS(pri, sec) ((pri) | ((sec) << 16)) argument
124 static inline uint32_t pack_two_shorts(U16CPU pri, U16CPU sec) { in pack_two_shorts() argument
126 SkASSERT((uint16_t)sec == sec); in pack_two_shorts()
127 return PACK_TWO_SHORTS(pri, sec); in pack_two_shorts()
130 #define pack_two_shorts(pri, sec) PACK_TWO_SHORTS(pri, sec) argument
/external/linux-tools-perf/scripts/python/
Dnetdev-times.py227 def irq__softirq_entry(name, context, cpu, sec, nsec, pid, comm, vec): argument
230 event_info = (name, context, cpu, nsecs(sec, nsec), pid, comm, vec)
233 def irq__softirq_exit(name, context, cpu, sec, nsec, pid, comm, vec): argument
236 event_info = (name, context, cpu, nsecs(sec, nsec), pid, comm, vec)
239 def irq__softirq_raise(name, context, cpu, sec, nsec, pid, comm, vec): argument
242 event_info = (name, context, cpu, nsecs(sec, nsec), pid, comm, vec)
245 def irq__irq_handler_entry(name, context, cpu, sec, nsec, pid, comm, argument
247 event_info = (name, context, cpu, nsecs(sec, nsec), pid, comm,
251 def irq__irq_handler_exit(name, context, cpu, sec, nsec, pid, comm, irq, ret): argument
252 event_info = (name, context, cpu, nsecs(sec, nsec), pid, comm, irq, ret)
[all …]
/external/v8/src/
Ddate.js72 function MakeTime(hour, min, sec, ms) { argument
75 if (!$isFinite(sec)) return $NaN;
79 + TO_INTEGER(sec) * msPerSecond
537 function DateSetSeconds(sec, ms) { argument
540 sec = ToNumber(sec);
542 var time = MakeTime(LOCAL_HOUR(this), LOCAL_MIN(this), sec, ms);
548 function DateSetUTCSeconds(sec, ms) { argument
551 sec = ToNumber(sec);
553 var time = MakeTime(UTC_HOUR(this), UTC_MIN(this), sec, ms);
559 function DateSetMinutes(min, sec, ms) { argument
[all …]
/external/llvm/lib/Object/
DCOFFObjectFile.cpp284 const coff_section *sec = 0; in getSymbolSection() local
285 if (error_code ec = getSection(symb->SectionNumber, sec)) return ec; in getSymbolSection()
287 Sec.p = reinterpret_cast<uintptr_t>(sec); in getSymbolSection()
300 const coff_section *sec = toSec(Sec); in getSectionNext() local
301 sec += 1; in getSectionNext()
302 Sec.p = reinterpret_cast<uintptr_t>(sec); in getSectionNext()
309 const coff_section *sec = toSec(Sec); in getSectionName() local
310 return getSectionName(sec, Result); in getSectionName()
315 const coff_section *sec = toSec(Sec); in getSectionAddress() local
316 Result = sec->VirtualAddress; in getSectionAddress()
[all …]
/external/skia/src/core/
DSkBitmapProcState.h156 #define PACK_TWO_SHORTS(pri, sec) ((pri) << 16 | (sec)) argument
160 #define PACK_TWO_SHORTS(pri, sec) ((pri) | ((sec) << 16)) argument
166 static inline uint32_t pack_two_shorts(U16CPU pri, U16CPU sec) { in pack_two_shorts() argument
168 SkASSERT((uint16_t)sec == sec); in pack_two_shorts()
169 return PACK_TWO_SHORTS(pri, sec); in pack_two_shorts()
172 #define pack_two_shorts(pri, sec) PACK_TWO_SHORTS(pri, sec) argument
/external/wpa_supplicant_8/src/utils/
Dos.h19 void os_sleep(os_time_t sec, os_time_t usec);
22 os_time_t sec; member
37 ((a)->sec < (b)->sec || \
38 ((a)->sec == (b)->sec && (a)->usec < (b)->usec))
41 (res)->sec = (a)->sec - (b)->sec; \
44 (res)->sec--; \
64 int os_mktime(int year, int month, int day, int hour, int min, int sec,
68 int sec; /* 0..59 or 60 for leap seconds */ member
Dos_win32.c16 void os_sleep(os_time_t sec, os_time_t usec) in os_sleep() argument
18 if (sec) in os_sleep()
19 Sleep(sec * 1000); in os_sleep()
43 t->sec = (os_time_t) (tt / 1000000); in os_get_time()
50 int os_mktime(int year, int month, int day, int hour, int min, int sec, in os_mktime() argument
58 hour < 0 || hour > 23 || min < 0 || min > 59 || sec < 0 || in os_mktime()
59 sec > 60) in os_mktime()
68 tm.tm_sec = sec; in os_mktime()
98 tm->sec = tm2->tm_sec; in os_gmtime()
/external/kernel-headers/original/linux/
Dktime.h51 s32 sec, nsec; member
53 s32 nsec, sec;
140 return (ktime_t) { .tv = { .sec = secs, .nsec = nsecs } }; in ktime_set()
204 return (ktime_t) { .tv = { .sec = (s32)ts.tv_sec, in timespec_to_ktime()
216 return (ktime_t) { .tv = { .sec = (s32)tv.tv_sec, in timeval_to_ktime()
228 return (struct timespec) { .tv_sec = (time_t) kt.tv.sec, in ktime_to_timespec()
241 .tv_sec = (time_t) kt.tv.sec, in ktime_to_timeval()
253 return (u64) kt.tv.sec * NSEC_PER_SEC + kt.tv.nsec; in ktime_to_ns()
Djiffies.h314 unsigned long sec = value->tv_sec; in timespec_to_jiffies() local
317 if (sec >= MAX_SEC_IN_JIFFIES){ in timespec_to_jiffies()
318 sec = MAX_SEC_IN_JIFFIES; in timespec_to_jiffies()
321 return (((u64)sec * SEC_CONVERSION) + in timespec_to_jiffies()
353 unsigned long sec = value->tv_sec; in timeval_to_jiffies() local
356 if (sec >= MAX_SEC_IN_JIFFIES){ in timeval_to_jiffies()
357 sec = MAX_SEC_IN_JIFFIES; in timeval_to_jiffies()
360 return (((u64)sec * SEC_CONVERSION) + in timeval_to_jiffies()
/external/tcpdump/
Dprint-timed.c51 long sec, usec; in timed_print() local
89 sec = EXTRACT_32BITS(&tsp->tsp_time.tv_sec); in timed_print()
95 if (sec < 0 && usec != 0) { in timed_print()
96 sec++; in timed_print()
97 if (sec == 0) in timed_print()
101 printf("%ld.%06ld", sec, usec); in timed_print()
/external/linux-tools-perf/Documentation/
Dperf-bench.txt29 Total time:5.855 sec
31 170792 ops/sec
80 Total time:0.308 sec
86 Total time:0.582 sec
106 Total time:8.091 sec
108 123581 ops/sec
113 Total time:0.016 sec
115 59004 ops/sec
/external/wpa_supplicant_8/src/rsn_supp/
Dpmksa_cache.c59 while (pmksa->pmksa && pmksa->pmksa->expiration <= now.sec) { in pmksa_cache_expire()
81 int sec; in pmksa_cache_set_expiration() local
90 sec = pmksa->pmksa->expiration - now.sec; in pmksa_cache_set_expiration()
91 if (sec < 0) in pmksa_cache_set_expiration()
92 sec = 0; in pmksa_cache_set_expiration()
93 eloop_register_timeout(sec + 1, 0, pmksa_cache_expire, pmksa, NULL); in pmksa_cache_set_expiration()
98 sec = pmksa->pmksa->reauth_time - now.sec; in pmksa_cache_set_expiration()
99 if (sec < 0) in pmksa_cache_set_expiration()
100 sec = 0; in pmksa_cache_set_expiration()
101 eloop_register_timeout(sec, 0, pmksa_cache_reauth, pmksa, in pmksa_cache_set_expiration()
[all …]
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Date/
D15.9.5.30-1.js119 function addNewTestCase( time, hours, min, sec, ms, DateString) { argument
120 var UTCDate = UTCDateFromTime( SetHours( time, hours, min, sec, ms ));
121 var LocalDate = LocalDateFromTime( SetHours( time, hours, min, sec, ms ));
128 if ( sec == void 0 ) {
132 DateCase.setHours( hours, min, sec );
134 DateCase.setHours( hours, min, sec, ms );
203 function SetHours( t, hour, min, sec, ms ) { argument
207 var SEC = ( sec == void 0) ? SecFromTime(TIME) : Number(sec);
D15.9.5.28-1.js126 function addNewTestCase( time, min, sec, ms, DateString, UTCDate, LocalDate) { argument
129 if ( sec == void 0 ) {
133 DateCase.setMinutes( min, sec );
135 DateCase.setMinutes( min, sec, ms );
206 function SetMinutes( t, min, sec, ms ) { argument
209 var SEC = ( sec == void 0) ? SecFromTime(TIME) : Number(sec);
D15.9.5.29-1.js123 function addNewTestCase( time, min, sec, ms, DateString, UTCDate, LocalDate) { argument
126 if ( sec == void 0 ) {
130 DateCase.setUTCMinutes( min, sec );
132 DateCase.setUTCMinutes( min, sec, ms );
200 function SetUTCMinutes( t, min, sec, ms ) { argument
203 var SEC = ( sec == void 0) ? SecFromTime(TIME) : Number(sec);
/external/compiler-rt/lib/tsan/rtl/
Dtsan_symbolize_addr2line_linux.cc117 SectionDesc *sec = (SectionDesc*)internal_alloc(MBlockReportStack, in dl_iterate_phdr_cb() local
119 sec->module = m; in dl_iterate_phdr_cb()
120 sec->base = info->dlpi_addr + s->p_vaddr; in dl_iterate_phdr_cb()
121 sec->end = sec->base + s->p_memsz; in dl_iterate_phdr_cb()
122 sec->next = ctx->sections; in dl_iterate_phdr_cb()
123 ctx->sections = sec; in dl_iterate_phdr_cb()
124 DPrintf2(" Section %zx-%zx\n", sec->base, sec->end); in dl_iterate_phdr_cb()
/external/llvm/include/llvm/Object/
DELF.h609 void LoadVersionDefs(const Elf_Shdr *sec) const;
749 Elf_Rela_Iter beginELFRela(const Elf_Shdr *sec) const {
750 return Elf_Rela_Iter(sec->sh_entsize,
751 (const char *)(base() + sec->sh_offset));
754 Elf_Rela_Iter endELFRela(const Elf_Shdr *sec) const {
755 return Elf_Rela_Iter(sec->sh_entsize, (const char *)
756 (base() + sec->sh_offset + sec->sh_size));
759 Elf_Rel_Iter beginELFRel(const Elf_Shdr *sec) const {
760 return Elf_Rel_Iter(sec->sh_entsize,
761 (const char *)(base() + sec->sh_offset));
[all …]
/external/blktrace/btt/doc/
Dbtt.tex30 \section{\label{sec:intro}Introduction}
55 section~\ref{sec:cmd-line}), as we felt that discussing some of the
66 \newpage\section{\label{sec:getting-started}Getting Started}
78 will use \texttt{btt} with -- section~\ref{sec:o-D} shows how you
102 \newpage\section{\label{sec:output-overview}Output Overview}
347 \subsection*{\label{sec:detailed-data}Detailed Data}
350 \texttt{--all-data} or \texttt{-A} argument (see section~\ref{sec:o-A})
426 \newpage\section{\label{sec:data-files}Data Files Output}
434 provided in section~\ref{sec:activity}.
437 incoming IO requests, for more information see section~\ref{sec:qhist}.
[all …]
/external/qemu/distrib/sdl-1.2.15/src/thread/pth/
DSDL_syscond.c126 int sec; in SDL_CondWaitTimeout() local
135 sec = ms/1000; in SDL_CondWaitTimeout()
136 ev = pth_event(PTH_EVENT_TIME, pth_timeout(sec,(ms-sec*1000)*1000)); in SDL_CondWaitTimeout()
/external/blktrace/btt/
Diostat.c104 avgrq_sz = (double)(sp->sec[0] + sp->sec[1]) / nios; in __dump_stats()
123 fprintf(iostat_ofp, "%9.2lf ", (double)sp->sec[1] / dt); in __dump_stats()
124 fprintf(iostat_ofp, "%9.2lf ", (double)sp->sec[0] / dt); in __dump_stats()
125 fprintf(iostat_ofp, "%9.2lf ", (double)(sp->sec[1] / 2) / dt); in __dump_stats()
126 fprintf(iostat_ofp, "%9.2lf ", (double)(sp->sec[0] / 2) / dt); in __dump_stats()
138 sp->sec[0] = sp->sec[1] = 0; in __dump_stats()
151 asp->sec_s[i] += ((double)sp->sec[i] / dt); in __dump_stats()
260 ADD_STAT(dip, sec[rw], iop->t.bytes >> 9); in iostat_issue()

12345678910>>...12