HomeSort by relevance Sort by last modified time
    Searched full:stackbuf (Results 1 - 25 of 31) sorted by null

1 2

  /external/bison/lib/
perror.c 35 char stackbuf[STACKBUF_LEN]; local
39 string, even if it returns EINVAL; and stackbuf should be sized
41 ret = strerror_r (errno, stackbuf, sizeof stackbuf);
46 fprintf (stderr, "%s: %s\n", string, stackbuf);
48 fprintf (stderr, "%s\n", stackbuf);
strerror_r.c 186 char stackbuf[80]; local
188 if (buflen < sizeof stackbuf)
190 ret = strerror_r (errnum, stackbuf, sizeof stackbuf);
192 ret = safe_copy (buf, buflen, stackbuf);
210 char stackbuf[STACKBUF_LEN]; local
212 strerror_r (errnum, stackbuf, sizeof stackbuf);
213 len = strlen (stackbuf);
215 if (len + 1 == sizeof stackbuf)
229 char stackbuf[STACKBUF_LEN]; local
    [all...]
  /libcore/ojluni/src/main/native/
io_util.c 81 char stackBuf[BUF_SIZE];
104 buf = stackBuf;
124 if (buf != stackBuf) {
157 char stackBuf[BUF_SIZE];
180 buf = stackBuf;
209 if (buf != stackBuf) {
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
AMutableArray.h 38 //- (NSUInteger)countByEnumeratingWithState:(NSFastEnumerationState *)state objects:(id *)stackbuf count:(NSUInteger)len;
AMutableArray.m 224 // 1) Use the stack based array provided by stackbuf. If you do this, then you must respect the value of 'len'.
226 // In either case, state->itemsPtr MUST be a valid array (non-nil). This sample takes approach #1, using stackbuf to store results.
227 - (NSUInteger)countByEnumeratingWithState:(NSFastEnumerationState *)state objects:(id *)stackbuf count:(NSUInteger)len
245 state->itemsPtr = stackbuf;
251 stackbuf[cnt++] = ptrBuffer[state->state++];
AMutableDictionary.m 197 // 1) Use the stack based array provided by stackbuf. If you do this, then you must respect the value of 'len'.
199 // In either case, state->itemsPtr MUST be a valid array (non-nil). This sample takes approach #1, using stackbuf to store results.
200 - (NSUInteger)countByEnumeratingWithState:(NSFastEnumerationState *)state objects:(id *)stackbuf count:(NSUInteger)len
219 state->itemsPtr = stackbuf;
225 stackbuf[cnt++] = ptrBuffer[state->state++];
  /external/clang/test/SemaObjC/
compare-qualified-id.m 13 @protocol NSFastEnumeration - (NSUInteger)countByEnumeratingWithState:(NSFastEnumerationState *)state objects:(id *)stackbuf count:(NSUInteger)len; @end
foreach.m 37 - (unsigned long)countByEnumeratingWithState:(NSFastEnumerationState *)state objects:(id *)stackbuf count:(unsigned long)len;
property-6.m 34 - (NSUInteger)countByEnumeratingWithState:(NSFastEnumerationState *)state objects:(id *)stackbuf count:(NSUInteger)len;
comptypes-9.m 35 - (NSUInteger)countByEnumeratingWithState:(NSFastEnumerationState *)state objects:(id *)stackbuf count:(NSUInteger)len;
property-8.m 21 - (NSUInteger)countByEnumeratingWithState:(NSFastEnumerationState *)state objects:(id *)stackbuf count:(NSUInteger)len;
weak-attr-ivar.m 24 - (NSUInteger)countByEnumeratingWithState:(NSFastEnumerationState *)state objects:(id *)stackbuf count:(NSUInteger)len;
  /external/clang/test/SemaObjCXX/
foreach.mm 44 - (unsigned long)countByEnumeratingWithState:(NSFastEnumerationState *)state objects:(id *)stackbuf count:(unsigned long)len;
  /external/clang/test/Analysis/
NSPanel.m 32 - (NSUInteger)countByEnumeratingWithState:(NSFastEnumerationState *)state objects:(id *)stackbuf count:(NSUInteger)len;
pr4209.m 20 @protocol NSFastEnumeration - (NSUInteger)countByEnumeratingWithState:(NSFastEnumerationState *)state objects:(id *)stackbuf count:(NSUInteger)len;
method-arg-decay.m 19 @protocol NSFastEnumeration - (NSUInteger)countByEnumeratingWithState:(NSFastEnumerationState *)state objects:(id *)stackbuf count:(NSUInteger)len;
uninit-msg-expr.m 25 - (NSUInteger)countByEnumeratingWithState:(NSFastEnumerationState *)state objects:(id *)stackbuf count:(NSUInteger)len;
delegates.m 56 - (NSUInteger)countByEnumeratingWithState:(NSFastEnumerationState *)state objects:(id *)stackbuf count:(NSUInteger)len;
variadic-method-types.m 40 - (NSUInteger)countByEnumeratingWithState:(NSFastEnumerationState *)state objects:(id *)stackbuf count:(NSUInteger)len;
misc-ps-eager-assume.m 19 @protocol NSFastEnumeration - (NSUInteger)countByEnumeratingWithState:(NSFastEnumerationState *)state objects:(id *)stackbuf count:(NSUInteger)len;
NSString.m 66 - (NSUInteger)countByEnumeratingWithState:(NSFastEnumerationState *)state objects:(id *)stackbuf count:(NSUInteger)len;
  /external/compiler-rt/test/msan/
chained_origin_limits.cc 74 char stackbuf[1000]; local
75 char *volatile p = stackbuf;
  /external/clang/test/Analysis/Inputs/
system-header-simulator-objc.h 67 @protocol NSFastEnumeration - (NSUInteger)countByEnumeratingWithState:(NSFastEnumerationState *)state objects:(id *)stackbuf count:(NSUInteger)len;
  /frameworks/rs/cpu_ref/
rsCpuIntrinsicBlur.cpp 285 float4 stackbuf[2048]; local
286 float4 *buf = &stackbuf[0];
  /external/icu/icu4c/source/test/cintltst/
cbiapts.c 91 UChar stackBuf[2000 + sizeof(void *)/sizeof(UChar)];
106 stackBuf,
117 u_strcpy(dest->str, stackBuf);
472 char stackBuf[U_BRK_SAFECLONE_BUFFERSIZE+sizeof(void *)];
474 brk = ubrk_safeClone(someIterators[i], &stackBuf[1], &bufferSize, &status);
    [all...]

Completed in 731 milliseconds

1 2