Searched +refs:val +refs:target (Results 1 - 25 of 49) sorted by relevance

12

/vbox/src/libs/xpcom18a4/ipc/ipcd/daemon/src/
H A DipcClient.h70 void AddTarget(const nsID &target);
71 PRBool DelTarget(const nsID &target);
72 PRBool HasTarget(const nsID &target) const { return mTargets.Find(target) != NULL; }
81 void SetExpectsSyncReply(PRBool val) { mExpectsSyncReply = val; } argument
/vbox/src/recompiler/tcg/
H A Dtcg-dyngen.c133 static inline void immediate_ldah(void *p, int val) {
135 long high = ((val >> 16) + ((val >> 15) & 1)) & 0xffff;
141 static inline void immediate_lda(void *dest, int val) {
142 *(uint16_t *) dest = val;
154 /* Patch instruction with "val" where "mask" has 1 bits. */
155 static inline void ia64_patch (uint64_t insn_addr, uint64_t mask, uint64_t val)
165 v1 = val << (shift - 64);
168 v0 = val << shift; v1 = val >> (6
375 long target; member in struct:hppa_branch_stub
[all...]
/vbox/src/libs/xpcom18a4/xpcom/io/
H A DnsStreamUtils.cpp53 nsIEventTarget *target)
55 , mTarget(target)
71 PRBool val; local
72 rv = mTarget->IsOnCurrentThread(&val);
73 if (NS_FAILED(rv) || !val) {
142 nsIEventTarget *target)
144 , mTarget(target)
160 PRBool val; local
161 rv = mTarget->IsOnCurrentThread(&val);
162 if (NS_FAILED(rv) || !val) {
52 nsInputStreamReadyEvent(nsIInputStreamCallback *callback, nsIEventTarget *target) argument
141 nsOutputStreamReadyEvent(nsIOutputStreamCallback *callback, nsIEventTarget *target) argument
179 Init(nsIOutputStreamCallback *callback, nsIEventTarget *target) argument
232 NS_NewInputStreamReadyEvent(nsIInputStreamCallback **event, nsIInputStreamCallback *callback, nsIEventTarget *target) argument
244 NS_NewOutputStreamReadyEvent(nsIOutputStreamCallback **event, nsIOutputStreamCallback *callback, nsIEventTarget *target) argument
283 Start(nsIInputStream *source, nsIOutputStream *sink, nsIEventTarget *target, nsAsyncCopyCallbackFun callback, void *closure, PRUint32 chunksize) argument
556 NS_AsyncCopy(nsIInputStream *source, nsIOutputStream *sink, nsIEventTarget *target, nsAsyncCopyMode mode, PRUint32 chunkSize, nsAsyncCopyCallbackFun callback, void *closure) argument
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/util/
H A Dzbin.c248 void *target; local
251 signed long val; local
260 target = (void*)((char*) output->buf + offset );
265 addend = *( ( int8_t * ) target );
268 addend = *( ( int16_t * ) target );
271 addend = *( ( int32_t * ) target );
279 val = size + addend;
285 if ( val < 0 ) {
292 if ( val & ~mask ) {
297 ( int )( ( val
[all...]
/vbox/src/VBox/Additions/x11/x11include/mesa-7.2/src/mesa/swrast/
H A Dswrast.h209 _swrast_CopyConvolutionFilter2D(GLcontext *ctx, GLenum target,
214 _swrast_CopyConvolutionFilter1D(GLcontext *ctx, GLenum target,
218 _swrast_CopyColorSubTable( GLcontext *ctx,GLenum target, GLsizei start,
222 GLenum target, GLenum internalformat,
231 _swrast_copy_teximage1d(GLcontext *ctx, GLenum target, GLint level,
236 _swrast_copy_teximage2d(GLcontext *ctx, GLenum target, GLint level,
243 _swrast_copy_texsubimage1d(GLcontext *ctx, GLenum target, GLint level,
248 GLenum target, GLint level,
254 GLenum target, GLint level,
266 GLuint index, GLfloat val[
[all...]
/vbox/src/libs/libxml2-2.6.31/python/
H A Dgenerator.py40 def __init__(self, target):
43 self.finish_starttag = target.start
44 self.finish_endtag = target.end
45 self.handle_data = target.data
77 def __init__(self, target):
78 self.unknown_starttag = target.start
79 self.handle_data = target.data
80 self.unknown_endtag = target.end
83 def getparser(target = None):
86 if target i
[all...]
/vbox/src/VBox/Additions/x11/x11include/mesa-7.2/src/mesa/main/
H A Ddd.h172 * \param target user specified.
177 * \param texObj is the target texture object.
178 * \param texImage is the target texture image. It will have the texture \p
186 void (*TexImage1D)( GLcontext *ctx, GLenum target, GLint level,
199 void (*TexImage2D)( GLcontext *ctx, GLenum target, GLint level,
212 void (*TexImage3D)( GLcontext *ctx, GLenum target, GLint level,
223 * \param target user specified.
235 * \param texObj is the target texture object.
236 * \param texImage is the target texture image. It will have the texture \p
241 void (*TexSubImage1D)( GLcontext *ctx, GLenum target, GLin
[all...]
/vbox/src/VBox/Devices/Graphics/vmsvga_glext/
H A Dglext.h6299 GLAPI void APIENTRY glTexImage3D (GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid *pixels);
6300 GLAPI void APIENTRY glTexSubImage3D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid *pixels);
6301 GLAPI void APIENTRY glCopyTexSubImage3D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height);
6302 GLAPI void APIENTRY glColorTable (GLenum target, GLenum internalformat, GLsizei width, GLenum format, GLenum type, const GLvoid *table);
6303 GLAPI void APIENTRY glColorTableParameterfv (GLenum target, GLenum pname, const GLfloat *params);
6304 GLAPI void APIENTRY glColorTableParameteriv (GLenum target, GLenum pname, const GLint *params);
6305 GLAPI void APIENTRY glCopyColorTable (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width);
6306 GLAPI void APIENTRY glGetColorTable (GLenum target, GLenum format, GLenum type, GLvoid *table);
6307 GLAPI void APIENTRY glGetColorTableParameterfv (GLenum target, GLenum pname, GLfloat *params);
6308 GLAPI void APIENTRY glGetColorTableParameteriv (GLenum target, GLenu
[all...]
/vbox/src/VBox/Additions/x11/x11include/MesaLib-8.0.4-GL/GL/
H A Dglext.h5425 GLAPI void APIENTRY glTexImage3D (GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid *pixels);
5426 GLAPI void APIENTRY glTexSubImage3D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid *pixels);
5427 GLAPI void APIENTRY glCopyTexSubImage3D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height);
5432 typedef void (APIENTRYP PFNGLTEXIMAGE3DPROC) (GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid *pixels);
5433 typedef void (APIENTRYP PFNGLTEXSUBIMAGE3DPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid *pixels);
5434 typedef void (APIENTRYP PFNGLCOPYTEXSUBIMAGE3DPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height);
5440 GLAPI void APIENTRY glColorTable (GLenum target, GLenum internalformat, GLsizei width, GLenum format, GLenum type, const GLvoid *table);
5441 GLAPI void APIENTRY glColorTableParameterfv (GLenum target, GLenum pname, const GLfloat *params);
5442 GLAPI void APIENTRY glColorTableParameteriv (GLenum target, GLenum pname, const GLint *params);
5443 GLAPI void APIENTRY glCopyColorTable (GLenum target, GLenu
[all...]
/vbox/src/libs/libxml2-2.6.31/
H A Dxpath.c80 * If defined, this will optimize expressions like "key('foo', 'val')[b][1]"
140 * @val: a double value
149 xmlXPathIsNaN(double val) { argument
150 return(trio_isnan(val));
155 * @val: a double value
164 xmlXPathIsInf(double val) { argument
165 return(trio_isinf(val));
172 * @val: a double value
181 xmlXPathGetSign(double val) { argument
182 return(trio_signbit(val));
1922 xmlXPathCacheWrapNodeSet(xmlXPathContextPtr ctxt, xmlNodeSetPtr val) argument
1959 xmlXPathCacheWrapString(xmlXPathContextPtr ctxt, xmlChar *val) argument
2011 xmlXPathCacheNewNodeSet(xmlXPathContextPtr ctxt, xmlNodePtr val) argument
2075 xmlXPathCacheNewCString(xmlXPathContextPtr ctxt, const char *val) argument
2124 xmlXPathCacheNewString(xmlXPathContextPtr ctxt, const xmlChar *val) argument
2178 xmlXPathCacheNewBoolean(xmlXPathContextPtr ctxt, int val) argument
2226 xmlXPathCacheNewFloat(xmlXPathContextPtr ctxt, double val) argument
2276 xmlXPathCacheConvertString(xmlXPathContextPtr ctxt, xmlXPathObjectPtr val) argument
2324 xmlXPathCacheObjectCopy(xmlXPathContextPtr ctxt, xmlXPathObjectPtr val) argument
2359 xmlXPathCacheConvertBoolean(xmlXPathContextPtr ctxt, xmlXPathObjectPtr val) argument
2383 xmlXPathCacheConvertNumber(xmlXPathContextPtr ctxt, xmlXPathObjectPtr val) argument
3424 xmlXPathNodeSetCreate(xmlNodePtr val) argument
3496 xmlXPathNodeSetContains(xmlNodeSetPtr cur, xmlNodePtr val) argument
3589 xmlXPathNodeSetAdd(xmlNodeSetPtr cur, xmlNodePtr val) argument
3649 xmlXPathNodeSetAddUnique(xmlNodeSetPtr cur, xmlNodePtr val) argument
4054 xmlXPathNodeSetDel(xmlNodeSetPtr cur, xmlNodePtr val) argument
4091 xmlXPathNodeSetRemove(xmlNodeSetPtr cur, int val) argument
4259 xmlXPathNewNodeSet(xmlNodePtr val) argument
4288 xmlXPathNewValueTree(xmlNodePtr val) argument
4317 xmlXPathNewNodeSetList(xmlNodeSetPtr val) argument
4344 xmlXPathWrapNodeSet(xmlNodeSetPtr val) argument
5127 xmlXPathNewFloat(double val) argument
5153 xmlXPathNewBoolean(int val) argument
5179 xmlXPathNewString(const xmlChar *val) argument
5208 xmlXPathWrapString(xmlChar *val) argument
5234 xmlXPathNewCString(const char *val) argument
5260 xmlXPathWrapCString(char * val) argument
5273 xmlXPathWrapExternal(void *val) argument
5299 xmlXPathObjectCopy(xmlXPathObjectPtr val) argument
5579 xmlXPathCastBooleanToString(int val) argument
5597 xmlXPathCastNumberToString(double val) argument
5666 xmlXPathCastToString(xmlXPathObjectPtr val) argument
5712 xmlXPathConvertString(xmlXPathObjectPtr val) argument
5758 xmlXPathCastBooleanToNumber(int val) argument
5773 xmlXPathCastStringToNumber(const xmlChar * val) argument
5831 xmlXPathCastToNumber(xmlXPathObjectPtr val) argument
5877 xmlXPathConvertNumber(xmlXPathObjectPtr val) argument
5898 xmlXPathCastNumberToBoolean(double val) argument
5913 xmlXPathCastStringToBoolean(const xmlChar *val) argument
5943 xmlXPathCastToBoolean(xmlXPathObjectPtr val) argument
5990 xmlXPathConvertBoolean(xmlXPathObjectPtr val) argument
6591 xmlXPathCompareNodeSetValue(xmlXPathParserContextPtr ctxt, int inf, int strict, xmlXPathObjectPtr arg, xmlXPathObjectPtr val) argument
6695 xmlXPathObjectPtr val; local
7382 double val; local
7405 double val; local
7428 double val; local
7451 double val; local
9123 xmlBufferPtr target; local
9166 xmlBufferPtr target; local
9210 xmlBufferPtr target; local
9282 xmlBufferPtr target; local
9435 xmlXPathObjectPtr val = NULL; local
9674 unsigned int val; local
13354 xmlXPathObjectPtr val; local
13502 xmlXPathObjectPtr val; local
15057 xmlBufferPtr target; local
[all...]
H A Duri.c284 int val = *(unsigned char *)p++; local
285 int hi = val / 0x10, lo = val % 0x10;
324 int val = *(unsigned char *)p++; local
325 int hi = val / 0x10, lo = val % 0x10;
401 int val = *(unsigned char *)p++; local
402 int hi = val / 0x10, lo = val % 0x10;
441 int val local
502 int val = *(unsigned char *)p++; local
538 int val = *(unsigned char *)p++; local
846 xmlURIUnescapeString(const char *str, int len, char *target) argument
941 unsigned char val; local
1900 xmlChar *val = NULL; local
2181 xmlChar *val = NULL; local
[all...]
H A Dvalid.c3097 xmlRemoveMemo target; local
3126 target.l = ref_list;
3127 target.ap = attr;
3130 xmlListWalk(ref_list, xmlWalkRemoveRef, &target);
3460 int val, len; local
3464 val = xmlStringCurrentChar(NULL, cur, &len);
3466 if (!IS_LETTER(val) && (val != '_') &&
3467 (val != ':')) {
3471 val
3499 int val, len; local
3565 int val, len; local
3607 int val, len; local
4047 int val; local
4280 int val; local
4457 int val; local
[all...]
H A DSAX2.c565 int val; local
573 val = xmlParseCtxtExternalEntity(ctxt, ret->URI,
575 if (val == 0) {
1122 xmlChar *val; local
1126 val = xmlStringDecodeEntities(ctxt, value, XML_SUBSTITUTE_REF,
1130 val = (xmlChar *) value;
1133 if (val[0] != 0) {
1136 uri = xmlParseURI((const char *)val);
1140 "xmlns: %s not a valid URI\n", val);
1145 "xmlns: URI %s is not absolute\n", val);
1176 xmlChar *val; local
1297 xmlChar *val; local
2519 xmlSAX2ProcessingInstruction(void *ctx, const xmlChar *target, const xmlChar *data) argument
[all...]
H A DHTMLparser.c128 * @val: integer info
134 const char *msg, int val)
143 NULL, val, 0, msg, val);
239 #define SKIP(val) ctxt->nbChars += (val),ctxt->input->cur += (val),ctxt->input->col+=(val)
241 #define NXT(val) ctxt->input->cur[(val)]
133 htmlParseErrInt(xmlParserCtxtPtr ctxt, xmlParserErrors error, const char *msg, int val) argument
327 unsigned int val; local
2904 const xmlChar *target; local
3098 int val = 0; local
3251 xmlChar *val = NULL; local
5014 xmlChar val; local
5658 htmlHandleOmittedElem(int val) argument
[all...]
H A Dtestapi.c223 static void des_void_ptr(int no ATTRIBUTE_UNUSED, void *val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
233 static void des_const_void_ptr(int no ATTRIBUTE_UNUSED, const void *val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
244 static void des_userdata(int no ATTRIBUTE_UNUSED, void *val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
258 static void des_int(int no ATTRIBUTE_UNUSED, int val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
271 static void des_parseroptions(int no ATTRIBUTE_UNUSED, int val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
285 static void des_long(int no ATTRIBUTE_UNUSED, long val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
298 static void des_xmlChar(int no ATTRIBUTE_UNUSED, xmlChar val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
310 static void des_unsigned_int(int no ATTRIBUTE_UNUSED, unsigned int val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
322 static void des_unsigned_long(int no ATTRIBUTE_UNUSED, unsigned long val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
336 static void des_double(int no ATTRIBUTE_UNUSED, double val ATTRIBUTE_UNUSE
385 des_FILE_ptr(int no ATTRIBUTE_UNUSED, FILE *val, int nr ATTRIBUTE_UNUSED) argument
393 des_debug_FILE_ptr(int no ATTRIBUTE_UNUSED, FILE *val, int nr ATTRIBUTE_UNUSED) argument
452 des_xmlParserCtxtPtr(int no ATTRIBUTE_UNUSED, xmlParserCtxtPtr val, int nr ATTRIBUTE_UNUSED) argument
474 des_xmlValidCtxtPtr(int no ATTRIBUTE_UNUSED, xmlValidCtxtPtr val, int nr ATTRIBUTE_UNUSED) argument
493 des_xmlParserInputBufferPtr(int no ATTRIBUTE_UNUSED, xmlParserInputBufferPtr val, int nr ATTRIBUTE_UNUSED) argument
503 des_xmlDocPtr(int no ATTRIBUTE_UNUSED, xmlDocPtr val, int nr ATTRIBUTE_UNUSED) argument
522 des_xmlDictPtr(int no ATTRIBUTE_UNUSED, xmlDictPtr val, int nr ATTRIBUTE_UNUSED) argument
534 des_xmlNodePtr(int no, xmlNodePtr val, int nr ATTRIBUTE_UNUSED) argument
550 des_xmlDtdPtr(int no, xmlDtdPtr val, int nr ATTRIBUTE_UNUSED) argument
582 des_xmlTextWriterPtr(int no ATTRIBUTE_UNUSED, xmlTextWriterPtr val, int nr ATTRIBUTE_UNUSED) argument
595 des_xmlTextReaderPtr(int no ATTRIBUTE_UNUSED, xmlTextReaderPtr val, int nr ATTRIBUTE_UNUSED) argument
606 des_xmlBufferPtr(int no ATTRIBUTE_UNUSED, xmlBufferPtr val, int nr ATTRIBUTE_UNUSED) argument
617 des_xmlListPtr(int no ATTRIBUTE_UNUSED, xmlListPtr val, int nr ATTRIBUTE_UNUSED) argument
628 des_xmlHashTablePtr(int no ATTRIBUTE_UNUSED, xmlHashTablePtr val, int nr ATTRIBUTE_UNUSED) argument
645 des_xmlXPathObjectPtr(int no ATTRIBUTE_UNUSED, xmlXPathObjectPtr val, int nr ATTRIBUTE_UNUSED) argument
658 des_xmlOutputBufferPtr(int no ATTRIBUTE_UNUSED, xmlOutputBufferPtr val, int nr ATTRIBUTE_UNUSED) argument
673 des_xmlNanoFTPCtxtPtr(int no ATTRIBUTE_UNUSED, void *val, int nr ATTRIBUTE_UNUSED) argument
688 des_xmlNanoHTTPCtxtPtr(int no ATTRIBUTE_UNUSED, void *val, int nr ATTRIBUTE_UNUSED) argument
758 desret_xmlChar_ptr(xmlChar *val) argument
762 desret_xmlDocPtr(xmlDocPtr val) argument
766 desret_xmlDictPtr(xmlDictPtr val) argument
770 desret_xmlOutputBufferPtr(xmlOutputBufferPtr val) argument
775 desret_xmlTextReaderPtr(xmlTextReaderPtr val) argument
779 desret_xmlNodePtr(xmlNodePtr val) argument
785 desret_xmlAttrPtr(xmlAttrPtr val) argument
791 desret_xmlEntityPtr(xmlEntityPtr val) argument
797 desret_xmlElementPtr(xmlElementPtr val) argument
802 desret_xmlAttributePtr(xmlAttributePtr val) argument
809 desret_xmlDtdPtr(xmlDtdPtr val) argument
813 desret_xmlXPathObjectPtr(xmlXPathObjectPtr val) argument
816 desret_xmlNodeSetPtr(xmlNodeSetPtr val) argument
820 desret_xmlParserCtxtPtr(xmlParserCtxtPtr val) argument
823 desret_xmlParserInputBufferPtr(xmlParserInputBufferPtr val) argument
826 desret_xmlParserInputPtr(xmlParserInputPtr val) argument
830 desret_xmlTextWriterPtr(xmlTextWriterPtr val) argument
834 desret_xmlBufferPtr(xmlBufferPtr val) argument
838 desret_xmlSchemaParserCtxtPtr(xmlSchemaParserCtxtPtr val) argument
843 desret_xmlRelaxNGParserCtxtPtr(xmlRelaxNGParserCtxtPtr val) argument
852 desret_xmlNanoHTTPCtxtPtr(void *val) argument
857 desret_xmlNanoFTPCtxtPtr(void *val) argument
903 desret_htmlDocPtr(htmlDocPtr val) argument
917 desret_htmlParserCtxtPtr(htmlParserCtxtPtr val) argument
956 des_xmlElementContentPtr(int no ATTRIBUTE_UNUSED, xmlElementContentPtr val, int nr ATTRIBUTE_UNUSED) argument
960 desret_xmlElementContentPtr(xmlElementContentPtr val) argument
2029 int val; /* int 0 or 1 */ local
4808 xmlChar * target; /* the target name */ local
6595 unsigned int val; /* character to be validated */ local
13275 int val; /* int 0 or 1 */ local
13307 int val; /* int 0 or 1 */ local
14358 int val; /* int 0 or 1 */ local
15292 int val; /* int 0 or 1 */ local
15712 int val; /* the char value */ local
15756 int val; /* the char value */ local
19196 xmlNodePtr target; /* the element where the attribute will be grafted */ local
19235 xmlNodePtr target; /* the element where the attributes will be grafted */ local
22471 int val; /* the xml:space value ("0": default, 1: "preserve") */ local
34638 xmlSchemaValPtr val; /* the precomputed value */ local
34679 xmlSchemaValPtr val; /* the precomputed value */ local
34802 xmlSchemaValPtr val; /* a schemas value */ local
34948 xmlSchemaValPtr * val; /* the return computed value */ local
35003 xmlSchemaValPtr * val; /* the return computed value */ local
35060 xmlSchemaValPtr val; /* the precomputed value */ local
35117 xmlSchemaValPtr val; /* the precomputed value */ local
35184 xmlSchemaValPtr val; /* the precomputed value */ local
35246 xmlSchemaValPtr val; /* the precomputed value */ local
35368 xmlSchemaValPtr * val; /* the return computed value */ local
35453 xmlSchemaValPtr val; /* the value */ local
35487 xmlSchemaValPtr val; /* the value */ local
35894 xmlChar * val; /* the xmlChar to search (needle) */ local
35933 xmlChar val; /* the xmlChar to search */ local
36252 xmlChar * val; /* the xmlChar to search (needle) */ local
43712 xmlChar * target; /* PI target */ local
44763 xmlChar * target; /* PI target */ local
45156 int val; /* a boolean */ local
45190 int val; /* a boolean */ local
45394 double val; /* a number */ local
45428 double val; /* a number */ local
45462 xmlChar * val; /* a string */ local
45496 xmlChar * val; /* a string */ local
45530 xmlXPathObjectPtr val; /* an XPath object */ local
45564 xmlXPathObjectPtr val; /* an XPath object */ local
45598 xmlXPathObjectPtr val; /* an XPath object */ local
45840 xmlXPathObjectPtr val; /* an XPath object */ local
45875 xmlXPathObjectPtr val; /* an XPath object */ local
45910 xmlXPathObjectPtr val; /* an XPath object */ local
46103 double val; /* a double value */ local
46137 double val; /* a double value */ local
46181 xmlNodePtr val; /* an initial xmlNodePtr, or NULL */ local
46215 xmlXPathObjectPtr val; /* the original object */ local
47620 int val; /* the boolean value */ local
47654 char * val; /* the char * value */ local
47688 double val; /* the double value */ local
47722 xmlNodePtr val; /* the NodePtr value */ local
47756 xmlNodeSetPtr val; /* an existing NodeSet */ local
47800 xmlChar * val; /* the xmlChar * value */ local
48450 xmlNodePtr val; /* a new xmlNodePtr */ local
48535 xmlNodePtr val; /* a new xmlNodePtr */ local
48575 xmlNodePtr val; /* the node */ local
48615 xmlNodePtr val; /* an xmlNodePtr */ local
48695 int val; /* the index to remove */ local
50326 char * val; /* the char * value */ local
50360 void * val; /* the user data */ local
50394 xmlNodeSetPtr val; /* the NodePtr value */ local
50722 xmlXPathObjectPtr val; /* a new xmlXPathObjectPtr */ local
50771 xmlXPathObjectPtr val; /* an xmlXPathObjectPtr */ local
50820 int val; /* the index to remove */ local
51276 xmlLocationSetPtr val; /* the LocationSet value */ local
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/net/ath/ath9k/
H A Dath9k_eeprom.c32 void ath9k_hw_analog_shift_regwrite(struct ath_hw *ah, u32 reg, u32 val) argument
34 REG_WRITE(ah, reg, val);
41 u32 shift, u32 val)
46 regVal |= (val << shift) & mask;
54 int16_t ath9k_hw_interpolate(u16 target, u16 srcLeft, u16 srcRight, argument
62 rv = (int16_t) (((target - srcLeft) * targetRight +
63 (srcRight - target) * targetLeft) /
69 int ath9k_hw_get_lower_upper_index(u8 target, u8 *pList, u16 listSize, argument
74 if (target <= pList[0]) {
78 if (target >
40 ath9k_hw_analog_shift_rmw(struct ath_hw *ah, u32 reg, u32 mask, u32 shift, u32 val) argument
[all...]
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/wine/
H A Dexception.h103 #define siglongjmp(buf,val) longjmp(buf,val)
107 void (*target)(void) ) DECLSPEC_HIDDEN DECLSPEC_NORETURN;
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/wine/
H A Dexception.h103 #define siglongjmp(buf,val) longjmp(buf,val)
107 void (*target)(void) ) DECLSPEC_HIDDEN DECLSPEC_NORETURN;
/vbox/src/VBox/HostServices/SharedOpenGL/crserverlib/
H A Dserver_misc.c24 void SERVER_DISPATCH_APIENTRY crServerDispatchGetChromiumParametervCR(GLenum target, GLuint index, GLenum type, GLsizei count, GLvoid *values) argument
55 switch (target)
92 cr_server.head_spu->dispatch_table.GetChromiumParametervCR( target, index, type, count, local_storage );
99 void SERVER_DISPATCH_APIENTRY crServerDispatchChromiumParametervCR(GLenum target, GLenum type, GLsizei count, const GLvoid *values) argument
104 switch (target) {
126 const int32_t val = ai32Values[i]; local
128 if (val == 0)
130 WARN(("GL_SHARE_LISTS_CR invalid value[%d] %d", i, val));
134 pCtx[i] = (CRContextInfo *) crHashtableSearch(cr_server.contextTable, val);
137 WARN(("GL_SHARE_LISTS_CR invalid pCtx1 for value[%d] %d", i, val));
315 crServerDispatchChromiumParameteriCR(GLenum target, GLint value) argument
361 crServerDispatchChromiumParameterfCR(GLenum target, GLfloat value) argument
400 crServerDispatchCopyTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height) argument
[all...]
/vbox/src/VBox/Devices/Graphics/
H A DDevVGA-SVGA3d-win.cpp259 /* Current active render target (if any) */
549 /* NULL is a dummy surface which can be used as a render target to save memory. */
1462 /* Typical render target formats; we should allow render target buffers to be used as textures. */
1626 /* Check all contexts if this surface is used as a render target or active texture. */
3378 SVGA3dSurfaceImageId target; local
3380 target.sid = pContext->state.aRenderTargets[j];
3381 target.face = 0;
3382 target.mipmap = 0;
3383 rc = vmsvga3dSetRenderTarget(pThis, cid, (SVGA3dRenderTargetType)j, target);
3592 DWORD val; local
4262 vmsvga3dSetRenderTarget(PVGASTATE pThis, uint32_t cid, SVGA3dRenderTargetType type, SVGA3dSurfaceImageId target) argument
4694 DWORD val; local
[all...]
H A DDevVGA-SVGA3d-ogl.cpp72 typedef void (APIENTRYP PFNGLGETPROGRAMIVARBPROC) (GLenum target, GLenum pname, GLint *params);
668 /* Current active render target (if any) */
2692 /* Typical render target formats; we should allow render target buffers to be used as textures. */
2819 /* Check all contexts if this surface is used as a render target or active texture. */
4461 /* Bind the object to the framebuffer target. */
4603 /* Unbind the object from the framebuffer target. */
4937 uint32_t val;
4956 Log(("vmsvga3dSetRenderState: cid=%x state=%s (%d) val=%x\n", cid, vmsvga3dGetRenderStateName(pRenderState[i].state), pRenderState[i].state, pRenderState[i].uintValue));
4965 val
[all...]
/vbox/src/VBox/Main/webservice/jaxlibs/
H A Djaxb-api.jar ... Object implements java.security.PrivilegedAction { final synthetic Class val$c void " href="/source/s?defs= ...
/vbox/src/VBox/Additions/x11/x11include/MesaLib-8.0.4-GL/GL/internal/
H A Ddri_interface.h242 GLint target,
252 GLint target,
262 GLint target,
982 int (*configQueryb)(__DRIscreen *screen, const char *var, GLboolean *val);
983 int (*configQueryi)(__DRIscreen *screen, const char *var, GLint *val);
984 int (*configQueryf)(__DRIscreen *screen, const char *var, GLfloat *val);
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/net/ath/ath5k/
H A Dath5k_phy.c53 u32 val, u8 reg_id, int set)
100 data = ath5k_hw_bitswap(val, num_bits);
377 "target gain %d\n", ret, ah->ah_gain.g_step_idx,
1443 ath5k_get_interpolated_value(s16 target, s16 x_left, s16 x_right, argument
1462 result = y_left + (ratio * (target - x_left) / 100);
1589 u32 target = channel->center_freq; local
1609 if (target < pcinfo[0].freq) {
1617 if (target > pcinfo[max].freq) {
1631 if (pcinfo[i].freq == target) {
1639 if (target < pcinf
51 ath5k_hw_rfb_op(struct ath5k_hw *ah, const struct ath5k_rf_reg *rf_regs, u32 val, u8 reg_id, int set) argument
1668 u32 target = channel->center_freq; local
1759 u32 target = channel->center_freq; local
2203 u32 target = channel->center_freq; local
[all...]
/vbox/src/VBox/GuestHost/OpenGL/state_tracker/
H A Dstate_lists.c79 #define CRSTATE_SET_TEXTURE(state, cap, target) \
87 crStateBindTexture(target, crStateTextureHWIDtoID(_hwtex)); \
122 #define CRSTATE_SET_TEXENV_I(state, target, pname) {GLint _i=g->state; diff_api.GetTexEnviv(target, pname, &_i); CRSTATE_SET_CAP(state, _i, "%i");}
123 #define CRSTATE_SET_TEXENV_F(state, target, pname) {GLfloat _f=g->state; diff_api.GetTexEnvfv(target, pname, &_f); CRSTATE_SET_CAP(state, _f, "%f");}
124 #define CRSTATE_SET_TEXENV_COLOR(state, target, pname) _CRSTATE_SET_4F_RGBA(state, target, pname, GetTexEnvfv)
1141 GLint val=g->point.coordReplacement[i]; local
1147 diff_api.GetTexEnviv(GL_POINT_SPRITE_ARB, GL_COORD_REPLACE_ARB, &val);
1180 GLint val[2]; local
[all...]

Completed in 305 milliseconds

12