Searched refs:initialized (Results 1 - 25 of 56) sorted by relevance

123

/barrelfish-master/kernel/arch/armv7/
H A Da9_scu.c23 static bool initialized = false; variable
37 assert( !initialized );
40 MSG("initialized at 0x%"PRIxLVADDR"\n", scu_base);
41 initialized = true;
49 assert( initialized );
56 * Enable the SCU. Must have been initialized.
60 assert( initialized );
71 assert( initialized );
H A Da9_gt.c22 static bool initialized = false; variable
32 assert(!initialized);
35 initialized = true;
36 MSG("initialized at 0x%"PRIxLVADDR"\n", gt_base);
/barrelfish-master/lib/rcce/
H A DRCCE_comm.c63 // initialized. It is legal to overwrite an initialized communcator, in which case the
65 if (comm->initialized == RCCE_COMM_INITIALIZED) return(RCCE_SUCCESS);
70 comm->initialized = RCCE_COMM_INITIALIZED;
78 if (comm->initialized != RCCE_COMM_INITIALIZED)
82 comm->initialized = RCCE_COMM_NOT_INITIALIZED;
96 if (comm.initialized == RCCE_COMM_INITIALIZED) {
112 if (comm.initialized == RCCE_COMM_INITIALIZED) {
/barrelfish-master/lib/bomp_new/
H A Domp.c542 lock->initialized = 0x1;
573 assert(lock->initialized);
588 assert(lock->initialized);
609 assert(lock->initialized);
634 nlock->initialized = 1;
670 assert(nlock->initialized);
691 assert(nlock->initialized);
718 assert(nlock->initialized);
/barrelfish-master/lib/libc/locale/
H A DcXXrtomb_iconv.h43 bool initialized; member in struct:__anon999
71 if (s == NULL || !cs->initialized) {
74 cs->initialized = false;
81 cs->initialized = true;
H A DmbrtocXX_iconv.h45 bool initialized; member in struct:__anon1006
74 if (s == NULL || !cs->initialized) {
77 cs->initialized = false;
84 cs->initialized = true;
/barrelfish-master/lib/bomp/
H A Domp.c528 uint8_t initialized; member in struct:__omp_lock
536 uint8_t initialized; member in struct:__omp_nested_lock
569 lock->initialized = 0x1;
582 lock->initialized = 0x0;
610 assert(lock->initialized);
629 assert(lock->initialized);
654 assert(lock->initialized);
700 nlock->initialized = 1;
713 nlock->initialized = 0;
747 assert(nlock->initialized);
[all...]
/barrelfish-master/usr/acpi/arch/x86/
H A Dioapic.h22 int initialized; member in struct:ioapic
H A Dioapic.c45 a->initialized = 1;
H A Dioapic_controller_client.c128 if(ioapic != NULL && ioapic->initialized){
/barrelfish-master/lib/openssl-1.0.0d/crypto/rand/
H A Dmd_rand.c142 static int initialized=0; variable
187 initialized=0;
368 * Input into the hash function the local 'md' (which is initialized from
389 if (!initialized)
392 initialized = 1;
576 if (!initialized)
579 initialized = 1;
/barrelfish-master/lib/octopus/client/
H A Doctopus.c43 static bool initialized = false; variable
207 * Note the octopus rpc binding is most likely already initialized
214 if (initialized) {
217 initialized = true;
/barrelfish-master/lib/net/
H A Dnet.c154 if (st->initialized) {
162 st->initialized = true;
260 st->initialized = false;
283 if(st->initialized) {
319 * @param st the networking state to be initialized
329 if(st->initialized) {
416 if (!st->initialized) {
H A Dnetworking_internal.h63 bool initialized; member in struct:net_state
/barrelfish-master/include/
H A Domp.h40 uint8_t initialized; member in struct:__omp_lock
49 uint8_t initialized; member in struct:__omp_nested_lock
/barrelfish-master/usr/bench/net_latency/elb/
H A Dinterface_lib.c29 static bool initialized = false; variable
109 if (!initialized) {
/barrelfish-master/usr/drivers/e10k/
H A De10k_devif_vf.c61 int initialized; member in struct:vf_state
180 bool initialized_before = vf->initialized;
182 vf->initialized = 0;
258 vf->initialized = 1;
438 assert(!vf->initialized);
473 assert(vf->initialized);
541 assert(vf->initialized);
642 while (!vf->initialized) {
/barrelfish-master/tools/usbboot/include/omap4/
H A Domap4_rom.h69 u32 initialized; member in struct:mem_device
/barrelfish-master/usr/drivers/usb/usb_manager/include/
H A Dusb_controller.h59 * functions. Not all function pointers may be initialized.
123 uint8_t initialized; ///< initialized flag member in struct:usb_host_controller
/barrelfish-master/usr/drivers/usb/usb_manager/
H A Dusb_controller.c116 hc->initialized = 1;
/barrelfish-master/lib/net_interfaces/
H A Dinterface_raw.c227 static bool initialized = false; local
231 if (initialized) {
272 initialized = true;
/barrelfish-master/include/rcce/
H A DRCCE.h106 int initialized; member in struct:__anon265
/barrelfish-master/include/barrelfish/
H A Ddomain.h37 struct waitset_chanstate initev; ///< Dispatcher initialized event
38 bool initialized; ///< True if remote initialized member in struct:span_domain_state
/barrelfish-master/doc/016-serial-ports/
H A DSerial.tex89 Each port must be initialized before it can be used:
94 the port cannot be initialized, or the port number is out of range.
97 subsequent attempts to initialize an initialized port are silently
125 these functions on a serial port which has not yet been initialized
/barrelfish-master/doc/021-cpudriver/
H A Dcpudriver.tex215 IDT is set to 256 entries which are initialized in the following way:
280 Unused entries will be initialized by a special handler function. The slots
297 Segment registers are initialized by the \fnname{gdt\_reset} function during start-up and each of them points to a GDT entry (index of the GDT table slot for each segment is given in brackets).
323 On x86, the serial device (a PC16550 compatible controller) is initialized for the first time by the BSP core on boot-up.
338 The serial device is later re-initialized into a different state once the

Completed in 146 milliseconds

123