Searched defs:value (Results 1 - 25 of 457) sorted by relevance

1234567891011>>

/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Math/
H A Ds_ldexp.c23 ldexp(double value, int exp) argument
25 if(!finite(value)||value==0.0) return value;
26 value = scalbn(value,exp);
27 if(!finite(value)||value==0.0) errno = ERANGE;
28 return value;
H A Dmath_private.h27 value. That is non-ANSI, and, moreover, the gcc instruction
45 double value; member in union:__anon13024
60 double value; member in union:__anon13026
75 ew_u.value = (d); \
85 gh_u.value = (d); \
94 gl_u.value = (d); \
105 (d) = iw_u.value; \
113 sh_u.value = (d); \
115 (d) = sh_u.value; \
123 sl_u.value
133 float value; member in union:__anon13028
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/core/
H A Dbitops.c6 unsigned long value = x; local
9 for ( ls = 0 ; value ; ls++ ) {
10 value >>= 1;
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.5.3/
H A Dprivates.h63 pointer *value; /* address of private pointer */ member in struct:_PrivateCallback
101 * A negative value indicates no devPrivates field is available.
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.6.5/
H A Dprivates.h63 pointer *value; /* address of private pointer */ member in struct:_PrivateCallback
101 * A negative value indicates no devPrivates field is available.
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.7.7/
H A Dprivates.h63 pointer *value; /* address of private pointer */ member in struct:_PrivateCallback
101 * A negative value indicates no devPrivates field is available.
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.8.0/
H A Dprivates.h63 pointer *value; /* address of private pointer */ member in struct:_PrivateCallback
101 * A negative value indicates no devPrivates field is available.
/vbox/src/VBox/GuestHost/OpenGL/state_tracker/
H A Dstate_multisample.c31 void STATE_APIENTRY crStateSampleCoverageARB(GLclampf value, GLboolean invert) argument
46 m->sampleCoverageValue = value;
/vbox/src/libs/libxml2-2.6.31/doc/examples/
H A Dreader1.c27 const xmlChar *name, *value; local
33 value = xmlTextReaderConstValue(reader);
41 if (value == NULL)
44 if (xmlStrlen(value) > 40)
45 printf(" %.40s...\n", value);
47 printf(" %s\n", value);
H A Dreader2.c28 const xmlChar *name, *value; local
34 value = xmlTextReaderConstValue(reader);
42 if (value == NULL)
45 if (xmlStrlen(value) > 40)
46 printf(" %.40s...\n", value);
48 printf(" %s\n", value);
H A Dxpath2.c6 * usage: xpath2 <xml-file> <xpath-expr> <new-value>
27 const xmlChar * value);
28 static void update_xpath_nodes(xmlNodeSetPtr nodes, const xmlChar * value);
70 fprintf(stderr, "Usage: %s <xml-file> <xpath-expr> <value>\n", name);
77 * @value: the new node content.
82 * Returns 0 on success and a negative value otherwise.
85 example4(const char* filename, const xmlChar* xpathExpr, const xmlChar* value) { argument
92 assert(value);
119 update_xpath_nodes(xpathObj->nodesetval, value);
139 * @value
144 update_xpath_nodes(xmlNodeSetPtr nodes, const xmlChar* value) argument
[all...]
/vbox/src/libs/xpcom18a4/nsprpub/pr/include/obsolete/
H A Dprsem.h63 NSPR_API(PRSemaphore*) PR_NewSem(PRUintn value); variable
75 ** state of the semahore sem. The thread can proceed only if the counter value
76 ** of the semaphore sem is currently greater than 0. If the value of semaphore
78 ** allowing the calling thread to continue. If the value of semaphore sem is 0,
88 ** This routine increments the counter value of the semaphore. If other threads
95 ** Returns the value of the semaphore referenced by sem without affecting
96 ** the state of the semaphore. The value represents the semaphore vaule
97 F** at the time of the call, but may not be the actual value when the
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/bthreads/
H A Dbtsem.c46 PR_NewSem (PRUintn value) argument
54 if ((semaphore->sem = create_sem(value, "nspr_sem")) < B_NO_ERROR)
82 ** counter value of the semaphore sem is currently greater than 0. If the
83 ** value of semaphore sem is positive, it is decremented by one and the
85 ** the value of semaphore sem is 0, the calling thread blocks awaiting the
102 ** This routine increments the counter value of the semaphore. If other
117 ** Returns the value of the semaphore referenced by sem without affecting
118 ** the state of the semaphore. The value represents the semaphore value
119 ** at the time of the call, but may not be the actual value whe
[all...]
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/os2/
H A Dos2sem.c47 _PR_MD_NEW_SEM(_MDSemaphore *md, PRUintn value) argument
51 /* Our Sems don't support a value > 1 */
52 PR_ASSERT(value <= 1);
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/windows/
H A Dntsem.c48 _PR_MD_NEW_SEM(_MDSemaphore *md, PRUintn value) argument
50 md->sem = CreateSemaphore(NULL, value, 0x7fffffff, NULL);
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/threads/
H A Dprsem.c50 PR_IMPLEMENT(PRSemaphore*) PR_NewSem(PRUintn value) argument
59 _PR_MD_NEW_SEM(&sem->md, value);
74 sem->count = value;
102 ** state of the semahore sem. The thread can proceed only if the counter value
103 ** of the semaphore sem is currently greater than 0. If the value of semaphore
105 ** allowing the calling thread to continue. If the value of semaphore sem is 0,
136 ** This routine increments the counter value of the semaphore. If other threads
155 ** Returns the value of the semaphore referenced by sem without affecting
156 ** the state of the semaphore. The value represents the semaphore vaule
157 ** at the time of the call, but may not be the actual value whe
[all...]
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/lib/libdtrace/common/
H A Ddt_inttab.c71 dt_inttab_insert(dt_inttab_t *ip, uint64_t value, uint_t flags) argument
73 uint_t h = value & (ip->int_hashlen - 1);
78 if (hp->inh_value == value && hp->inh_flags == flags)
88 hp->inh_value = value;
/vbox/src/VBox/RDP/client-1.8.3/
H A Dasn.c92 ber_out_integer(STREAM s, int value) argument
95 out_uint16_be(s, value);
/vbox/src/libs/xpcom18a4/nsprpub/lib/libc/include/
H A Dplgetopt.h63 PL_OPT_BAD /* invalid option (and value) */
69 const char *value; /* the value of that option | NULL */ member in struct:PLOptState
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/misc/
H A Dpripcsem.c58 const char *osname, PRIntn flags, PRIntn mode, PRUintn value)
91 const char *name, PRIntn flags, PRIntn mode, PRUintn value)
100 return _PR_MD_OPEN_SEMAPHORE(osname, flags, mode, value);
57 _PR_MD_OPEN_SEMAPHORE( const char *osname, PRIntn flags, PRIntn mode, PRUintn value) argument
90 PR_OpenSemaphore( const char *name, PRIntn flags, PRIntn mode, PRUintn value) argument
/vbox/src/libs/xpcom18a4/nsprpub/pr/tests/
H A Denv.c71 char *value; local
118 value = PR_GetEnv( ENVNAME );
119 if ( (NULL == value ) || (strcmp( value, ENVVALUE))) {
120 if (debug) printf( "env: PR_GetEnv() failed retrieving WinNative. Found: %s\n", value);
123 if (verbose) printf("env: PR_GetEnv() worked. Found: %s\n", value);
138 value = PR_GetEnv( ENVNAME );
139 if ( (NULL == value ) || (strcmp( value, ENVVALUE))) {
143 if (verbose) printf("env: PR_GetEnv() worked after setting it. Found: %s\n", value );
[all...]
/vbox/src/libs/libpng-1.2.8/
H A Dpngwtran.c142 png_byte value; local
144 value = (png_byte)(*sp & 0x03);
145 v |= (value << shift);
174 png_byte value; local
176 value = (png_byte)(*sp & 0x0f);
177 v |= (value << shift);
315 png_uint_16 value, v;
319 value = 0;
323 value |= (png_uint_16)((v << j) & (png_uint_16)0xffff);
325 value |
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Time/
H A Ditimer.c35 This will copy the interval part of the struct into the value and (if
129 The setitimer() function sets the timer specified by which to the value
130 specified in the structure pointed to by value, and if ovalue is not a null
131 pointer, stores the previous value of the timer in the structure pointed to
134 A timer value is defined by the itimerval structure. If it_value is non-zero,
136 non-zero, it specifies a value to be used in reloading it_value when the
138 value of it_interval. Setting it_interval to 0 disables a timer after its
156 @param[in] value The new value for this timer.
157 @param[out] ovalue The old value fo
163 setitimer( int which, const struct itimerval *value, struct itimerval *ovalue ) argument
[all...]
/vbox/src/VBox/Main/src-server/
H A DHostPower.cpp125 Bstr value; local
127 value.asOutParam());
129 if (SUCCEEDED(rc) && !value.isEmpty())
131 if (value != "0")
133 else if (value == "0")
147 value.asOutParam());
149 if (SUCCEEDED(rc) && !value.isEmpty())
152 if (value != "0")
154 else if (value == "0")
/vbox/src/VBox/Devices/PC/ipxe/src/net/
H A Dtcpip.c103 unsigned int value; local
107 value = * ( ( uint8_t * ) data + i );
110 value = be16_to_cpu ( value );
113 value = le16_to_cpu ( value );
115 cksum += value;

Completed in 102 milliseconds

1234567891011>>