Home
last modified time | relevance | path

Searched refs:returnValue (Results 1 – 25 of 33) sorted by relevance

12

/netbsd-src/external/gpl3/gcc.old/dist/libobjc/
H A Dprotocols.c96 Protocol **returnValue = NULL; in objc_copyProtocolList() local
114 returnValue = (Protocol **)(malloc (sizeof (Protocol *) * (count + 1))); in objc_copyProtocolList()
120 returnValue[i] = node->value; in objc_copyProtocolList()
125 returnValue[i] = NULL; in objc_copyProtocolList()
132 return returnValue; in objc_copyProtocolList()
211 Protocol **returnValue = NULL; in class_copyProtocolList() local
239 returnValue = (Protocol **)(malloc (sizeof (Protocol *) * (count + 1))); in class_copyProtocolList()
249 returnValue[i] = (Protocol *)proto_list->list[j]; in class_copyProtocolList()
255 returnValue[i] = NULL; in class_copyProtocolList()
262 return returnValue; in class_copyProtocolList()
[all …]
H A Dencoding.c838 char *returnValue; in method_copyReturnType() local
853 returnValue = malloc (sizeof (char) * returnValueSize); in method_copyReturnType()
854 memcpy (returnValue, method->method_types, returnValueSize); in method_copyReturnType()
855 returnValue[returnValueSize - 1] = '\0'; in method_copyReturnType()
857 return returnValue; in method_copyReturnType()
868 char *returnValue; in method_copyArgumentType() local
903 returnValue = malloc (sizeof (char) * returnValueSize); in method_copyArgumentType()
904 memcpy (returnValue, returnValueStart, returnValueSize); in method_copyArgumentType()
905 returnValue[returnValueSize - 1] = '\0'; in method_copyArgumentType()
907 return returnValue; in method_copyArgumentType()
[all …]
H A Dselector.c294 SEL returnValue = NULL; in sel_getTypedSelector() local
302 if (returnValue == NULL) in sel_getTypedSelector()
307 returnValue = s; in sel_getTypedSelector()
316 if (returnValue->sel_types == s->sel_types) in sel_getTypedSelector()
318 else if (sel_types_match (returnValue->sel_types, s->sel_types)) in sel_getTypedSelector()
331 if (returnValue != NULL) in sel_getTypedSelector()
334 return returnValue; in sel_getTypedSelector()
347 SEL *returnValue = NULL; in sel_copyTypedSelectorList() local
376 returnValue = (SEL *)(malloc (sizeof (SEL) * (count + 1))); in sel_copyTypedSelectorList()
383 returnValue[j] = (SEL)(selector_list->head); in sel_copyTypedSelectorList()
[all …]
H A Divars.c89 object_getInstanceVariable (id object, const char *name, void **returnValue) in object_getInstanceVariable() argument
97 if (variable != NULL && returnValue != NULL) in object_getInstanceVariable()
101 *returnValue = *((id *)location); in object_getInstanceVariable()
179 struct objc_ivar **returnValue = NULL; in class_copyIvarList() local
198 returnValue = (struct objc_ivar **)(malloc (sizeof (struct objc_ivar *) * (count + 1))); in class_copyIvarList()
202 returnValue[i] = &(ivar_list->ivar_list[i]); in class_copyIvarList()
204 returnValue[i] = NULL; in class_copyIvarList()
210 return returnValue; in class_copyIvarList()
H A Dmethods.c71 struct objc_method **returnValue = NULL; in class_copyMethodList() local
99 returnValue in class_copyMethodList()
111 returnValue[i] = &(method_list->method_list[j]); in class_copyMethodList()
117 returnValue[i] = NULL; in class_copyMethodList()
125 return returnValue; in class_copyMethodList()
H A Dclass.c510 objc_getClassList (Class *returnValue, int maxNumberOfClassesToReturn) in objc_getClassList() argument
521 if (returnValue) in objc_getClassList()
524 returnValue[count] = node->pointer; in objc_getClassList()
/netbsd-src/external/gpl3/gcc/dist/libobjc/
H A Dprotocols.c96 Protocol **returnValue = NULL; in objc_copyProtocolList() local
114 returnValue = (Protocol **)(malloc (sizeof (Protocol *) * (count + 1))); in objc_copyProtocolList()
120 returnValue[i] = node->value; in objc_copyProtocolList()
125 returnValue[i] = NULL; in objc_copyProtocolList()
132 return returnValue; in objc_copyProtocolList()
211 Protocol **returnValue = NULL; in class_copyProtocolList() local
239 returnValue = (Protocol **)(malloc (sizeof (Protocol *) * (count + 1))); in class_copyProtocolList()
249 returnValue[i] = (Protocol *)proto_list->list[j]; in class_copyProtocolList()
255 returnValue[i] = NULL; in class_copyProtocolList()
262 return returnValue; in class_copyProtocolList()
[all …]
H A Dencoding.c838 char *returnValue; in method_copyReturnType() local
853 returnValue = malloc (sizeof (char) * returnValueSize); in method_copyReturnType()
854 memcpy (returnValue, method->method_types, returnValueSize); in method_copyReturnType()
855 returnValue[returnValueSize - 1] = '\0'; in method_copyReturnType()
857 return returnValue; in method_copyReturnType()
868 char *returnValue; in method_copyArgumentType() local
903 returnValue = malloc (sizeof (char) * returnValueSize); in method_copyArgumentType()
904 memcpy (returnValue, returnValueStart, returnValueSize); in method_copyArgumentType()
905 returnValue[returnValueSize - 1] = '\0'; in method_copyArgumentType()
907 return returnValue; in method_copyArgumentType()
[all …]
H A Dselector.c294 SEL returnValue = NULL; in sel_getTypedSelector() local
302 if (returnValue == NULL) in sel_getTypedSelector()
307 returnValue = s; in sel_getTypedSelector()
316 if (returnValue->sel_types == s->sel_types) in sel_getTypedSelector()
318 else if (sel_types_match (returnValue->sel_types, s->sel_types)) in sel_getTypedSelector()
331 if (returnValue != NULL) in sel_getTypedSelector()
334 return returnValue; in sel_getTypedSelector()
347 SEL *returnValue = NULL; in sel_copyTypedSelectorList() local
376 returnValue = (SEL *)(malloc (sizeof (SEL) * (count + 1))); in sel_copyTypedSelectorList()
383 returnValue[j] = (SEL)(selector_list->head); in sel_copyTypedSelectorList()
[all …]
H A Divars.c89 object_getInstanceVariable (id object, const char *name, void **returnValue) in object_getInstanceVariable() argument
97 if (variable != NULL && returnValue != NULL) in object_getInstanceVariable()
101 *returnValue = *((id *)location); in object_getInstanceVariable()
179 struct objc_ivar **returnValue = NULL; in class_copyIvarList() local
198 returnValue = (struct objc_ivar **)(malloc (sizeof (struct objc_ivar *) * (count + 1))); in class_copyIvarList()
202 returnValue[i] = &(ivar_list->ivar_list[i]); in class_copyIvarList()
204 returnValue[i] = NULL; in class_copyIvarList()
210 return returnValue; in class_copyIvarList()
H A Dmethods.c71 struct objc_method **returnValue = NULL; in class_copyMethodList() local
99 returnValue in class_copyMethodList()
111 returnValue[i] = &(method_list->method_list[j]); in class_copyMethodList()
117 returnValue[i] = NULL; in class_copyMethodList()
125 return returnValue; in class_copyMethodList()
H A Dclass.c510 objc_getClassList (Class *returnValue, int maxNumberOfClassesToReturn) in objc_getClassList() argument
521 if (returnValue) in objc_getClassList()
524 returnValue[count] = node->pointer; in objc_getClassList()
/netbsd-src/external/apache2/llvm/dist/llvm/examples/ParallelJIT/
H A DParallelJIT.cpp304 void* returnValue; in main() local
305 result = pthread_join( add1Thread, &returnValue ); in main()
310 std::cout << "Add1 returned " << intptr_t(returnValue) << std::endl; in main()
312 result = pthread_join( fibThread1, &returnValue ); in main()
317 std::cout << "Fib1 returned " << intptr_t(returnValue) << std::endl; in main()
319 result = pthread_join( fibThread2, &returnValue ); in main()
324 std::cout << "Fib2 returned " << intptr_t(returnValue) << std::endl; in main()
/netbsd-src/usr.bin/telnet/
H A Dsys_bsd.c562 int returnValue = 0; in process_rings() local
615 returnValue = 1; in process_rings()
647 returnValue = 1; /* did something useful */ in process_rings()
651 returnValue |= netflush(); in process_rings()
658 returnValue |= (ttyflush(SYNCHing|flushout) > 0); in process_rings()
661 return returnValue; in process_rings()
H A Dtelnet.c1605 int returnValue = 0; in telrcv() local
1613 returnValue = 1; in telrcv()
1825 return returnValue||count; in telrcv()
1847 int returnValue = 0; in telsnd() local
1859 returnValue = 1; in telsnd()
1980 return returnValue||count; /* Non-zero if we did anything */ in telsnd()
2001 int returnValue; in Scheduler() local
2026 returnValue = process_rings(netin, netout, netex, ttyin, ttyout, !block); in Scheduler()
2031 returnValue |= telsnd(); in Scheduler()
2035 returnValue |= telrcv(); in Scheduler()
[all …]
/netbsd-src/sys/fs/udf/
H A Dudf_osta.c52 int returnValue, unicodeIndex, byteIndex; in udf_UncompressUnicode() local
65 returnValue = -1; in udf_UncompressUnicode()
88 returnValue = unicodeIndex; in udf_UncompressUnicode()
90 return(returnValue); in udf_UncompressUnicode()
/netbsd-src/external/gpl3/gcc.old/dist/libobjc/objc/
H A Druntime.h294 objc_EXPORT Ivar object_getInstanceVariable (id object, const char *name, void **returnValue);
481 objc_EXPORT int objc_getClassList (Class *returnValue, int maxNumberOfClassesToReturn);
761 objc_EXPORT void method_getReturnType (Method method, char *returnValue,
776 char *returnValue, size_t returnValueSize);
/netbsd-src/external/gpl3/gcc/dist/libobjc/objc/
H A Druntime.h294 objc_EXPORT Ivar object_getInstanceVariable (id object, const char *name, void **returnValue);
481 objc_EXPORT int objc_getClassList (Class *returnValue, int maxNumberOfClassesToReturn);
761 objc_EXPORT void method_getReturnType (Method method, char *returnValue,
776 char *returnValue, size_t returnValueSize);
/netbsd-src/external/apache2/llvm/dist/clang/tools/scan-build/share/scan-build/
H A Dsorttable.js412 var returnValue = true;
421 returnValue = false;
424 return returnValue;
434 this.returnValue = false;
/netbsd-src/external/apache2/llvm/dist/clang/tools/scan-build-py/libscanbuild/resources/
H A Dsorttable.js412 var returnValue = true;
421 returnValue = false;
424 return returnValue;
434 this.returnValue = false;
/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/root/
H A Darray.d725 const returnValue = array.each!((e) { variable
735 assert(returnValue == 8);
748 const returnValue = array.each!((e) { variable
754 assert(returnValue == 0);
765 const returnValue = array.each!((e) { variable
775 assert(returnValue == 9);
787 const returnValue = array.each!((e) { variable
803 assert(returnValue == 7);
/netbsd-src/external/apache2/llvm/dist/clang/lib/Driver/ToolChains/
H A DMSVC.cpp908 bool returnValue = false; in getSystemRegistryString()
963 returnValue = true; in getSystemRegistryString()
977 returnValue = true; in getSystemRegistryString()
983 return returnValue; in getSystemRegistryString()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyTraverse.h891 self()->printSExpr(E->returnValue(), SS, Prec_Other); in printReturn()
H A DThreadSafetyTIL.h1468 SExpr *returnValue() { return Retval; } in returnValue() function
1469 const SExpr *returnValue() const { return Retval; } in returnValue() function
/netbsd-src/external/mit/libcbor/dist/docs/doxygen/
H A Djquery.js16returnValue===false||bv.getPreventDefault&&bv.getPreventDefault())?i:bk}else{this.type=bv}if(e){b.…

12