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

1 2

  /external/icu4c/samples/numfmt/
util.cpp 63 char stackBuffer[100];
66 int32_t bufLen = str.extract(0, 0x7fffffff, stackBuffer, sizeof(stackBuffer), "UTF-8");
67 if(bufLen < sizeof(stackBuffer)) {
68 buf = stackBuffer;
74 if(buf != stackBuffer) {
  /external/webkit/Source/WebCore/bindings/v8/
V8NPUtils.cpp 117 // stackBuffer when it's used, not when we use the heap.
121 char stackBuffer[kStackBufferSize];
122 str->WriteUtf8(stackBuffer, bufferLength);
123 return _NPN_GetStringIdentifier(stackBuffer);
  /external/icu4c/common/
ustr_wcs.cpp 70 char stackBuffer [_STACK_BUFFER_CAPACITY];
71 char* tempBuf = stackBuffer;
73 char* tempBufLimit = stackBuffer + tempBufCapacity;
112 if(!u_growAnyBufferFromStatic(stackBuffer,(void**) &tempBuf, &tempBufCapacity,
134 if(!u_growAnyBufferFromStatic(stackBuffer,(void**) &tempBuf, &tempBufCapacity,
218 if(stackBuffer != saveBuf){
ubrk.cpp 126 void *stackBuffer,
144 createBufferClone(stackBuffer, *pBufferSize, *status));
dictbe.cpp 703 AutoBuffer(size_t size) : buffer(stackBuffer), capacity(N) {
710 if (buffer != stackBuffer)
730 if (buffer != stackBuffer)
737 T stackBuffer[N];
    [all...]
ucnv_cnv.h 179 void *stackBuffer,
ucnv.c 154 ucnv_safeClone(const UConverter* cnv, void *stackBuffer, int32_t *pBufferSize, UErrorCode *status)
158 char *stackBufferChars = (char *)stackBuffer;
194 UTRACE_DATA3(UTRACE_OPEN_CLOSE, "clone converter %s at %p into stackBuffer %p",
195 ucnv_getName(cnv, status), cnv, stackBuffer);
218 if (U_ALIGNMENT_OFFSET(stackBuffer) != 0) {
229 stackBuffer = (void *)stackBufferChars;
232 if (*pBufferSize < bufferSizeNeeded || stackBuffer == NULL)
251 localConverter = (UConverter*) stackBuffer;
299 if(localConverter == (UConverter*)stackBuffer) {
    [all...]
ucnvhz.c 540 void *stackBuffer,
556 localClone = (struct cloneHZStruct *)stackBuffer;
rbbi.cpp     [all...]
  /external/icu4c/i18n/
windtfmt.cpp 238 UChar stackBuffer[STACK_BUFFER_SIZE];
239 UChar *buffer = stackBuffer;
254 if (buffer != stackBuffer) {
264 UChar stackBuffer[STACK_BUFFER_SIZE];
265 UChar *buffer = stackBuffer;
280 if (buffer != stackBuffer) {
winnmfmt.cpp 286 UChar stackBuffer[STACK_BUFFER_SIZE];
287 UChar *buffer = stackBuffer;
339 if (buffer != stackBuffer) {
  /external/icu4c/test/perf/DateFmtPerf/
DateFmtPerf.h 342 char stackBuffer[100];
345 int32_t bufLen = str.extract(0, 0x7fffffff, stackBuffer, sizeof(stackBuffer), "UTF-8");
346 if(bufLen < sizeof(stackBuffer)) {
347 buf = stackBuffer;
353 if(buf != stackBuffer) {
  /external/icu4c/test/intltest/
winnmtst.cpp 181 wchar_t stackBuffer[STACK_BUFFER_SIZE];
182 wchar_t *buffer = stackBuffer;
218 if (buffer != stackBuffer) {
  /external/icu4c/common/unicode/
brkiter.h 440 * @param stackBuffer user allocated space for the new clone. If NULL new memory will be allocated.
454 virtual BreakIterator * createBufferClone(void *stackBuffer,
rbbi.h 593 * @param stackBuffer The pointer to the memory into which the cloned object
605 * @return Pointer to the clone object. This may differ from the stackBuffer
607 * or if the stackBuffer was too small to hold the clone.
610 virtual BreakIterator * createBufferClone(void *stackBuffer,
ubrk.h 246 * @param stackBuffer user allocated space for the new clone. If NULL new memory will be allocated.
262 void *stackBuffer,
ucnv.h 502 * For most efficient operation, pass in a stackBuffer (and a *pBufferSize)
510 * If *pBufferSize==0, (regardless of whether stackBuffer==NULL or not)
524 * @param stackBuffer user allocated space for the new clone. If NULL new memory will be allocated.
539 void *stackBuffer,
    [all...]
  /external/webkit/Source/WebCore/icu/unicode/
ubrk.h 346 * @param stackBuffer user allocated space for the new clone. If NULL new memory will be allocated.
362 void *stackBuffer,
ucnv.h 437 * @param stackBuffer user allocated space for the new clone. If NULL new memory will be allocated.
452 void *stackBuffer,
    [all...]
ucol.h     [all...]
  /external/clang/test/Analysis/
malloc.c 754 // understanding that the malloc'ed memory is not the same as stackBuffer.
756 char stackBuffer[128];
759 if (myValueSize <= sizeof(stackBuffer))
760 buffer = stackBuffer;
765 if (buffer != stackBuffer)
770 char stackBuffer[128];
773 if (myValueSize <= sizeof(stackBuffer))
774 buffer = stackBuffer;
779 if (buffer == stackBuffer)
  /external/icu4c/i18n/unicode/
ucol.h     [all...]
  /external/webkit/Source/JavaScriptCore/icu/unicode/
ucnv.h 437 * @param stackBuffer user allocated space for the new clone. If NULL new memory will be allocated.
452 void *stackBuffer,
    [all...]
ucol.h     [all...]
  /external/webkit/Source/JavaScriptGlue/icu/unicode/
ucnv.h 437 * @param stackBuffer user allocated space for the new clone. If NULL new memory will be allocated.
452 void *stackBuffer,
    [all...]

Completed in 627 milliseconds

1 2