HomeSort by: relevance | last modified time | path
    Searched defs:returnValue (Results 1 - 15 of 15) sorted by relevancy

  /src/external/gpl3/gcc/dist/libobjc/
methods.c 71 struct objc_method **returnValue = NULL;
99 returnValue
111 returnValue[i] = &(method_list->method_list[j]);
117 returnValue[i] = NULL;
125 return returnValue;
protocols.c 96 Protocol **returnValue = NULL;
114 returnValue = (Protocol **)(malloc (sizeof (Protocol *) * (count + 1)));
120 returnValue[i] = node->value;
125 returnValue[i] = NULL;
132 return returnValue;
211 Protocol **returnValue = NULL;
239 returnValue = (Protocol **)(malloc (sizeof (Protocol *) * (count + 1)));
249 returnValue[i] = (Protocol *)proto_list->list[j];
255 returnValue[i] = NULL;
262 return returnValue;
    [all...]
ivars.c 89 object_getInstanceVariable (id object, const char *name, void **returnValue)
97 if (variable != NULL && returnValue != NULL)
101 *returnValue = *((id *)location);
179 struct objc_ivar **returnValue = NULL;
198 returnValue = (struct objc_ivar **)(malloc (sizeof (struct objc_ivar *) * (count + 1)));
202 returnValue[i] = &(ivar_list->ivar_list[i]);
204 returnValue[i] = NULL;
210 return returnValue;
selector.c 294 SEL returnValue = NULL;
302 if (returnValue == NULL)
305 returnValue, but keep checking as we want to
307 returnValue = s;
316 if (returnValue->sel_types == s->sel_types)
318 else if (sel_types_match (returnValue->sel_types, s->sel_types))
331 if (returnValue != NULL)
334 return returnValue;
347 SEL *returnValue = NULL;
376 returnValue = (SEL *)(malloc (sizeof (SEL) * (count + 1)))
    [all...]
encoding.c 843 char *returnValue;
857 /* Copy the first argument into returnValue. */
858 returnValue = malloc (sizeof (char) * returnValueSize);
859 memcpy (returnValue, method->method_types, returnValueSize);
860 returnValue[returnValueSize - 1] = '\0';
862 return returnValue;
873 char *returnValue;
907 /* Copy the argument into returnValue. */
908 returnValue = malloc (sizeof (char) * returnValueSize);
909 memcpy (returnValue, returnValueStart, returnValueSize)
    [all...]
  /src/external/gpl3/gcc.old/dist/libobjc/
methods.c 71 struct objc_method **returnValue = NULL;
99 returnValue
111 returnValue[i] = &(method_list->method_list[j]);
117 returnValue[i] = NULL;
125 return returnValue;
protocols.c 96 Protocol **returnValue = NULL;
114 returnValue = (Protocol **)(malloc (sizeof (Protocol *) * (count + 1)));
120 returnValue[i] = node->value;
125 returnValue[i] = NULL;
132 return returnValue;
211 Protocol **returnValue = NULL;
239 returnValue = (Protocol **)(malloc (sizeof (Protocol *) * (count + 1)));
249 returnValue[i] = (Protocol *)proto_list->list[j];
255 returnValue[i] = NULL;
262 return returnValue;
    [all...]
ivars.c 89 object_getInstanceVariable (id object, const char *name, void **returnValue)
97 if (variable != NULL && returnValue != NULL)
101 *returnValue = *((id *)location);
179 struct objc_ivar **returnValue = NULL;
198 returnValue = (struct objc_ivar **)(malloc (sizeof (struct objc_ivar *) * (count + 1)));
202 returnValue[i] = &(ivar_list->ivar_list[i]);
204 returnValue[i] = NULL;
210 return returnValue;
selector.c 294 SEL returnValue = NULL;
302 if (returnValue == NULL)
305 returnValue, but keep checking as we want to
307 returnValue = s;
316 if (returnValue->sel_types == s->sel_types)
318 else if (sel_types_match (returnValue->sel_types, s->sel_types))
331 if (returnValue != NULL)
334 return returnValue;
347 SEL *returnValue = NULL;
376 returnValue = (SEL *)(malloc (sizeof (SEL) * (count + 1)))
    [all...]
encoding.c 838 char *returnValue;
852 /* Copy the first argument into returnValue. */
853 returnValue = malloc (sizeof (char) * returnValueSize);
854 memcpy (returnValue, method->method_types, returnValueSize);
855 returnValue[returnValueSize - 1] = '\0';
857 return returnValue;
868 char *returnValue;
902 /* Copy the argument into returnValue. */
903 returnValue = malloc (sizeof (char) * returnValueSize);
904 memcpy (returnValue, returnValueStart, returnValueSize)
    [all...]
  /src/usr.bin/telnet/
sys_bsd.c 558 /* One wants to be a bit careful about setting returnValue
563 int returnValue = 0;
616 returnValue = 1;
648 returnValue = 1; /* did something useful */
652 returnValue |= netflush();
659 returnValue |= (ttyflush(SYNCHing|flushout) > 0);
662 return returnValue;
telnet.c 1609 int returnValue = 0;
1617 returnValue = 1;
1829 return returnValue||count;
1851 int returnValue = 0;
1863 returnValue = 1;
1984 return returnValue||count; /* Non-zero if we did anything */
2001 /* One wants to be a bit careful about setting returnValue
2006 int returnValue;
2031 returnValue = process_rings(netin, netout, netex, ttyin, ttyout, !block);
2036 returnValue |= telsnd()
    [all...]
  /src/sys/fs/udf/
udf_osta.c 52 int returnValue, unicodeIndex, byteIndex;
65 returnValue = -1;
88 returnValue = unicodeIndex;
90 return(returnValue);
  /src/external/apache2/llvm/dist/llvm/examples/ParallelJIT/
ParallelJIT.cpp 304 void* returnValue;
305 result = pthread_join( add1Thread, &returnValue );
310 std::cout << "Add1 returned " << intptr_t(returnValue) << std::endl;
312 result = pthread_join( fibThread1, &returnValue );
317 std::cout << "Fib1 returned " << intptr_t(returnValue) << std::endl;
319 result = pthread_join( fibThread2, &returnValue );
324 std::cout << "Fib2 returned " << intptr_t(returnValue) << std::endl;
  /src/external/apache2/llvm/dist/clang/include/clang/Analysis/Analyses/
ThreadSafetyTIL.h 1468 SExpr *returnValue() { return Retval; }
1469 const SExpr *returnValue() const { return Retval; }

Completed in 35 milliseconds