Home
last modified time | relevance | path

Searched refs:outLength (Results 1 - 10 of 10) sorted by relevance

/third_party/icu/icu4c/source/common/
H A Duinvchar.cpp459 const char *outString, int32_t outLength, in uprv_compareInvAscii()
466 if(outString==NULL || outLength<-1 || localString==NULL || localLength<-1) { in uprv_compareInvAscii()
470 if(outLength<0) { in uprv_compareInvAscii()
471 outLength=(int32_t)uprv_strlen(outString); in uprv_compareInvAscii()
477 minLength= outLength<localLength ? outLength : localLength; in uprv_compareInvAscii()
500 return outLength-localLength; in uprv_compareInvAscii()
505 const char *outString, int32_t outLength, in uprv_compareInvEbcdic()
512 if(outString==NULL || outLength<-1 || localString==NULL || localLength<-1) { in uprv_compareInvEbcdic()
516 if(outLength< in uprv_compareInvEbcdic()
458 uprv_compareInvAscii(const UDataSwapper *ds, const char *outString, int32_t outLength, const UChar *localString, int32_t localLength) uprv_compareInvAscii() argument
504 uprv_compareInvEbcdic(const UDataSwapper *ds, const char *outString, int32_t outLength, const UChar *localString, int32_t localLength) uprv_compareInvEbcdic() argument
[all...]
H A Dudataswp.h134 const char *outString, int32_t outLength,
311 const char *outString, int32_t outLength,
320 const char *outString, int32_t outLength,
/third_party/node/deps/icu-small/source/common/
H A Duinvchar.cpp459 const char *outString, int32_t outLength, in uprv_compareInvAscii()
466 if(outString==nullptr || outLength<-1 || localString==nullptr || localLength<-1) { in uprv_compareInvAscii()
470 if(outLength<0) { in uprv_compareInvAscii()
471 outLength=(int32_t)uprv_strlen(outString); in uprv_compareInvAscii()
477 minLength= outLength<localLength ? outLength : localLength; in uprv_compareInvAscii()
500 return outLength-localLength; in uprv_compareInvAscii()
505 const char *outString, int32_t outLength, in uprv_compareInvEbcdic()
512 if(outString==nullptr || outLength<-1 || localString==nullptr || localLength<-1) { in uprv_compareInvEbcdic()
516 if(outLength< in uprv_compareInvEbcdic()
458 uprv_compareInvAscii(const UDataSwapper *ds, const char *outString, int32_t outLength, const char16_t *localString, int32_t localLength) uprv_compareInvAscii() argument
504 uprv_compareInvEbcdic(const UDataSwapper *ds, const char *outString, int32_t outLength, const char16_t *localString, int32_t localLength) uprv_compareInvEbcdic() argument
[all...]
H A Dudataswp.h134 const char *outString, int32_t outLength,
311 const char *outString, int32_t outLength,
320 const char *outString, int32_t outLength,
/third_party/skia/third_party/externals/icu/source/common/
H A Duinvchar.cpp459 const char *outString, int32_t outLength, in uprv_compareInvAscii()
466 if(outString==NULL || outLength<-1 || localString==NULL || localLength<-1) { in uprv_compareInvAscii()
470 if(outLength<0) { in uprv_compareInvAscii()
471 outLength=(int32_t)uprv_strlen(outString); in uprv_compareInvAscii()
477 minLength= outLength<localLength ? outLength : localLength; in uprv_compareInvAscii()
500 return outLength-localLength; in uprv_compareInvAscii()
505 const char *outString, int32_t outLength, in uprv_compareInvEbcdic()
512 if(outString==NULL || outLength<-1 || localString==NULL || localLength<-1) { in uprv_compareInvEbcdic()
516 if(outLength< in uprv_compareInvEbcdic()
458 uprv_compareInvAscii(const UDataSwapper *ds, const char *outString, int32_t outLength, const UChar *localString, int32_t localLength) uprv_compareInvAscii() argument
504 uprv_compareInvEbcdic(const UDataSwapper *ds, const char *outString, int32_t outLength, const UChar *localString, int32_t localLength) uprv_compareInvEbcdic() argument
[all...]
H A Dudataswp.h134 const char *outString, int32_t outLength,
311 const char *outString, int32_t outLength,
320 const char *outString, int32_t outLength,
/third_party/skia/src/core/
H A DSkString.cpp35 int outLength = std::vsnprintf(stackBuffer, SIZE, format, args); in apply_format_string() local
36 if (outLength < 0) { in apply_format_string()
41 if (outLength < SIZE) { in apply_format_string()
43 return {stackBuffer, outLength}; in apply_format_string()
49 heapBuffer->set(nullptr, outLength); in apply_format_string()
51 SkDEBUGCODE(int checkLength =) std::vsnprintf(heapBufferDest, outLength + 1, format, argsCopy); in apply_format_string()
52 SkASSERT(checkLength == outLength); in apply_format_string()
54 return {heapBufferDest, outLength}; in apply_format_string()
/third_party/skia/third_party/externals/imgui/examples/libs/usynergy/
H A DuSynergy.h173 has been received and wait for data to become available. If @a outLength is set to 0 upon completion it is
179 @param outLength Address of integer that receives the actual amount of bytes written into @a buffer
181 typedef uSynergyBool (*uSynergyReceiveFunc)(uSynergyCookie cookie, uint8_t *buffer, int maxLength, int* outLength);
/third_party/backends/backend/
H A Dcanon_dr.c8440 size_t outLength = 0; in do_usb_cmd() local
8521 outLength = outOffset+outLen; in do_usb_cmd()
8522 outActual = outLength; in do_usb_cmd()
8525 outBuffer = calloc(outLength,1); in do_usb_cmd()
8532 set_USB_OUT_xfer_length(outBuffer,outLength-4); in do_usb_cmd()
8538 DBG(25, "out: writing %d bytes, timeout %d\n", (int)outLength, actTimeout); in do_usb_cmd()
8539 hexdump(30, "out: >>", outBuffer, outLength); in do_usb_cmd()
8543 if(outLength != outActual){ in do_usb_cmd()
8544 DBG(5,"out: wrong size %d/%d\n", (int)outLength, (int)outActual); in do_usb_cmd()
/third_party/icu/icu4c/source/test/cintltst/
H A Dcnormtst.c1042 const UChar *out, int32_t outLength, in _testIter()
1051 outLimit=out+outLength; in _testIter()
1040 _testIter(const UChar *src, int32_t srcLength, UCharIterator *iter, UNormalizationMode mode, UBool forward, const UChar *out, int32_t outLength, const int32_t *srcIndexes, int32_t srcIndexesLength) _testIter() argument

Completed in 17 milliseconds