Searched refs:length (Results 401 - 425 of 7895) sorted by relevance

<<11121314151617181920>>

/macosx-10.10.1/ntp-92/lib/isc/
H A Dbase32.c46 mem_tobuffer(isc_buffer_t *target, void *base, unsigned int length);
66 while (source->length > 0) {
68 if (source->length == 1) {
78 if (source->length == 2) {
86 if (source->length == 3) {
95 if (source->length == 4) {
108 if (source->length != 0 && wordlength >= 0 &&
137 int length; /*%< Desired length of binary data or -1 */ member in struct:__anon11229
147 base32_decode_init(base32_decode_ctx_t *ctx, int length, argument
253 base32_tobuffer(isc_lex_t *lexer, const char base[], isc_buffer_t *target, int length) argument
285 isc_base32_tobuffer(isc_lex_t *lexer, isc_buffer_t *target, int length) argument
290 isc_base32hex_tobuffer(isc_lex_t *lexer, isc_buffer_t *target, int length) argument
362 mem_tobuffer(isc_buffer_t *target, void *base, unsigned int length) argument
[all...]
/macosx-10.10.1/ntp-92/lib/isc/include/isc/
H A Dbitstring.h87 unsigned int length; member in struct:isc_bitstring
98 unsigned int length, unsigned int size, isc_boolean_t lsb0);
101 * at 'data'. 'length' bits of the bitstring are valid. If 'lsb0'
112 *\li 'length' <= 'size'.
145 *\li 'sbitpos' + 'n' is less than or equal to the length of 'source'.
151 *\li The specified bits have been copied, and the length of 'target'
/macosx-10.10.1/security_systemkeychain-55202/src/
H A Dreadline.c84 malloced buffer or length buffer_size. Return 0 on success and -1 on failure. */
90 off_t length; local
104 length = lseek(fd, 0, SEEK_END);
105 if (length == -1)
112 buffer = malloc(length);
115 bytes_read = pread(fd, buffer, length, 0);
124 if (bytes_read != (ssize_t)length)
126 sec_error("read %s: only read %d of %qu bytes", name, bytes_read, length);
141 outData->Length = (uint32)length;
/macosx-10.10.1/tcpdump-61/tcpdump/
H A Dprint-llc.c150 llc_print(const u_char *p, u_int length, u_int caplen, argument
170 * OK, what type of LLC frame is this? The length
203 * type/length field is <= ETHERMTU, i.e. it's a length
218 ipx_print(p, length);
243 stp_print(p+3, length-3);
249 ip_print(gndo, p+4, length-4);
265 ipx_print(p+3, length-3);
288 length -= 3;
292 length
380 snap_print(const u_char *p, u_int length, u_int caplen, u_int bridge_pad) argument
[all...]
/macosx-10.10.1/xnu-2782.1.97/iokit/IOKit/nvram/
H A DIONVRAMController.h44 IOByteCount length) = 0;
46 IOByteCount length) = 0;
/macosx-10.10.1/xnu-2782.1.97/osfmk/i386/
H A Dmtrr.h57 uint64_t length,
61 uint64_t length,
/macosx-10.10.1/ICU-531.30/icuSources/common/
H A Dunistr.cpp47 for(int i = 0; i < s.length(); ++i) {
109 UnicodeString(s1.length()+s2.length()+1, (UChar32)0, 0).
158 int32_t unitCount = U16_LENGTH(c), length = count * unitCount; local
159 if(capacity < length) {
160 capacity = length;
168 // fill with length UChars
169 while(i < length) {
182 while(i < length) {
190 setLength(length);
277 UnicodeString(const char *src, int32_t length, EInvariant) argument
413 fromUTF32(const UChar32 *utf32, int32_t length) argument
575 doCompare( int32_t start, int32_t length, const UChar *srcChars, int32_t srcStart, int32_t srcLength) const argument
654 doCompareCodePointOrder(int32_t start, int32_t length, const UChar *srcChars, int32_t srcStart, int32_t srcLength) const argument
742 hasMoreChar32Than(int32_t start, int32_t length, int32_t number) const argument
769 doExtract(int32_t start, int32_t length, UChar *dst, int32_t dstStart) const argument
804 extract(int32_t start, int32_t length, char *target, int32_t targetCapacity, enum EInvariant) const argument
1071 findAndReplace(int32_t start, int32_t length, const UnicodeString& oldText, int32_t oldStart, int32_t oldLength, const UnicodeString& newText, int32_t newStart, int32_t newLength) argument
1242 int32_t length = utf8.length(); local
1308 doReplace( int32_t start, int32_t length, const UnicodeString& src, int32_t srcStart, int32_t srcLength) argument
1328 doReplace(int32_t start, int32_t length, const UChar *srcChars, int32_t srcStart, int32_t srcLength) argument
1498 doReverse(int32_t start, int32_t length) argument
1575 int32_t length = targetLength; local
1762 appendString(const UChar *s, int32_t length) argument
[all...]
H A Dcmemory.h185 * Deletes the array it owns and allocates a new one, copying length T items.
190 * @param length number of T items to be copied from the old array to the new one;
195 inline T *allocateInsteadAndCopy(int32_t newCapacity=1, int32_t length=0);
222 inline T *LocalMemory<T>::allocateInsteadAndCopy(int32_t newCapacity, int32_t length) { argument
226 if(length>0) {
227 if(length>newCapacity) {
228 length=newCapacity;
230 uprv_memcpy(p, LocalPointerBase<T>::ptr, length*sizeof(T));
309 * Deletes the array (if owned) and allocates a new one, copying length T items.
315 * @param length numbe
363 resize(int32_t newCapacity, int32_t length) argument
391 orphanOrClone(int32_t length, int32_t &resultCapacity) argument
538 resize(int32_t newCapacity, int32_t length) argument
569 orphanOrClone(int32_t length, int32_t &resultCapacity) argument
[all...]
H A Dubidiln.c42 * Only if the length of the text is zero, then levels==dirProps==NULL.
62 * length is <2, then this uses more memory.
67 * if it is less than length, then there is an implicit trailing run
99 int32_t start=pBiDi->length;
104 Setting trailingWSStart to pBidi->length will avoid changing the
109 pBiDi->trailingWSStart=start; /* currently == pBiDi->length */
132 int32_t length; local
138 RETURN_VOID_IF_BAD_RANGE(limit, 0, pParaBiDi->length+1, *pErrorCode);
153 length=pLineBiDi->length
266 int32_t start, length; local
524 int32_t runCount=pBiDi->runCount, visualStart=0, i, length, logicalStart; local
567 int32_t length=pBiDi->length, limit; local
714 prepareReorder(const UBiDiLevel *levels, int32_t length, int32_t *indexMap, UBiDiLevel *pMinLevel, UBiDiLevel *pMaxLevel) argument
754 ubidi_reorderLogical(const UBiDiLevel *levels, int32_t length, int32_t *indexMap) argument
817 ubidi_reorderVisual(const UBiDiLevel *levels, int32_t length, int32_t *indexMap) argument
899 int32_t i, visualStart=0, offset, length; local
926 int32_t i, length, insertRemove; local
946 int32_t i, j, start, limit, length, insertRemove; local
1014 int32_t visualStart=0, length; local
1041 int32_t controlFound=0, insertRemove, length; local
1153 int32_t length, insertRemove; local
1176 int32_t length, insertRemove; local
1283 int32_t insertRemove, length, i, j, k, m; local
1323 ubidi_invertMap(const int32_t *srcMap, int32_t *destMap, int32_t length) argument
[all...]
H A Ducnvdisp.c40 int32_t length; local
60 name=ures_getStringByKey(rb, cnv->sharedData->staticData->name, &length, &localStatus);
68 u_memcpy(displayName, name, uprv_min(length, displayNameCapacity)*U_SIZEOF_UCHAR);
71 length=(int32_t)uprv_strlen(cnv->sharedData->staticData->name);
72 u_charsToUChars(cnv->sharedData->staticData->name, displayName, uprv_min(length, displayNameCapacity));
74 return u_terminateUChars(displayName, displayNameCapacity, length, pErrorCode);
/macosx-10.10.1/cxxfilt-11/cxxfilt/opcodes/
H A Dcgen-ibld.in84 int length,
94 mask = (((1L << (length - 1)) - 1) << 1) | 1;
96 shift = (start + 1) - length;
98 shift = (word_length - (start + length));
110 WORD_LENGTH is the length of the word in bits in which the value resides.
112 LENGTH is the length of VALUE in bits.
113 TOTAL_LENGTH is the total length of the insn in bits.
128 unsigned int length,
135 unsigned long mask = (((1L << (length - 1)) - 1) << 1) | 1;
138 if (length
[all...]
/macosx-10.10.1/Heimdal-398.1.2/lib/gssapi/
H A Dtest_gssntlm.c82 dump_packet("Win2K PAC", pac->elements[0].value, pac->elements[0].length);
102 if (key->elements[0].length == 0) {
107 if (key->elements[0].length != sessionkey->length)
108 errx(1, "key length wrong: %d version: %s",
109 (int)key->elements[0].length, version);
112 sessionkey->data, sessionkey->length) != 0) {
113 dump_packet("AD session key", key->elements[0].value, key->elements[0].length);
114 dump_packet("local session key", sessionkey->data, sessionkey->length);
156 dump_packet("type1", data.data, data.length);
[all...]
/macosx-10.10.1/Heimdal-398.1.2/lib/asn1/
H A Dasn1-common.h13 size_t length; member in struct:heim_base_data
19 size_t length; member in struct:heim_integer
32 size_t length; member in struct:heim_bmp_string
37 size_t length; member in struct:heim_universal_string
44 size_t length; member in struct:heim_oid
49 size_t length; member in struct:heim_bit_string
H A Dder_free.c96 k->length = 0;
104 k->length = 0;
119 k->length = 0;
127 k->length = 0;
135 k->length = 0;
143 k->length = 0;
/macosx-10.10.1/Heimdal-398.1.2/lib/gssapi/mech/
H A Dgss_import_sec_context.c52 len = interprocess_token->length;
55 mech_oid.length = (p[0] << 8) | p[1];
56 if (len < mech_oid.length + 2)
59 buf.length = len - 2 - mech_oid.length;
60 buf.value = p + 2 + mech_oid.length;
/macosx-10.10.1/JavaScriptCore-7600.1.17/dfg/
H A DDFGFunctionWhitelist.cpp74 size_t length = strlen(line); local
75 if (line[length - 1] == '\n') {
76 line[length - 1] = '\0';
77 length--;
81 if (!length)
84 m_entries.add(String(line, length));
/macosx-10.10.1/JavaScriptCore-7600.1.17/tests/mozilla/ecma_2/RegExp/
H A Doctal-003.js51 str_regexp + ".exec(" + str_pattern +").length",
52 matches_array.length,
53 regexp.exec(pattern).length );
70 var limit = matches_array.length > regexp.exec(pattern).length
71 ? matches_array.length
72 : regexp.exec(pattern).length;
/macosx-10.10.1/OpenSSH-189/osslshim/heimdal-asn1/
H A Dasn1-common.h36 size_t length; member in struct:heim_base_data
42 size_t length; member in struct:heim_integer
55 size_t length; member in struct:heim_bmp_string
60 size_t length; member in struct:heim_universal_string
67 size_t length; member in struct:heim_oid
72 size_t length; member in struct:heim_bit_string
H A Dasn1-der_free.c118 k->length = 0;
126 k->length = 0;
141 k->length = 0;
149 k->length = 0;
157 k->length = 0;
165 k->length = 0;
/macosx-10.10.1/OpenSSL098-52/src/crypto/camellia/
H A Dcamellia.h106 const unsigned long length, const CAMELLIA_KEY *key,
109 const unsigned long length, const CAMELLIA_KEY *key,
112 const unsigned long length, const CAMELLIA_KEY *key,
115 const unsigned long length, const CAMELLIA_KEY *key,
121 const unsigned long length, const CAMELLIA_KEY *key,
124 const unsigned long length, const CAMELLIA_KEY *key,
/macosx-10.10.1/Security-57031.1.35/Security/include/securityd_client/
H A Ddictionary.cpp48 void* clonedData = (void*) new unsigned char [value.length ()];
51 memcpy (clonedData, value.data (), value.length ());
52 return CssmData (clonedData, value.length ());
73 uint32 length = GetUInt32(finger); local
76 mValue = CloneData (CssmData (finger, length));
90 // export the data in the format name length data
91 size_t outSize = 2 * sizeof (uint32) + mValue.length ();
105 // export the length
107 intBuffer = (uint32)mValue.length ();
116 memcpy (finger, mValue.data (), mValue.length ());
156 uint32 length = 0; local
277 uint32 length = 0; local
[all...]
/macosx-10.10.1/Security-57031.1.35/Security/libsecurityd/lib/
H A Ddictionary.cpp48 void* clonedData = (void*) new unsigned char [value.length ()];
51 memcpy (clonedData, value.data (), value.length ());
52 return CssmData (clonedData, value.length ());
73 uint32 length = GetUInt32(finger); local
76 mValue = CloneData (CssmData (finger, length));
90 // export the data in the format name length data
91 size_t outSize = 2 * sizeof (uint32) + mValue.length ();
105 // export the length
107 intBuffer = (uint32)mValue.length ();
116 memcpy (finger, mValue.data (), mValue.length ());
156 uint32 length = 0; local
277 uint32 length = 0; local
[all...]
/macosx-10.10.1/apr-32/apr/apr/test/
H A Dsockchild.c56 apr_size_t length = STRLEN; local
60 rv = apr_socket_recv(sock, datarecv, &length);
70 exit((int)length);
73 apr_size_t length = strlen(DATASTR); local
74 apr_socket_send(sock, DATASTR, &length);
77 exit((int)length);
/macosx-10.10.1/curl-83.1.2/curl/docs/examples/
H A Dsampleconv.c42 CURLcode my_conv_from_ascii_to_ebcdic(char *buffer, size_t length) argument
45 size_t bytes = length;
56 CURLcode my_conv_from_ebcdic_to_ascii(char *buffer, size_t length) argument
59 size_t bytes = length;
70 CURLcode my_conv_from_utf8_to_ebcdic(char *buffer, size_t length) argument
73 size_t bytes = length;
/macosx-10.10.1/hfs-285/fsck_hfs/dfalib/
H A DSKeyCompare.c47 UInt8 length, length2; local
50 length = *(str1++);
53 if (length == length2)
55 else if (length < length2)
60 length = length2;
63 while (length--)
126 // Also, we can't pre-compute the number of characters to compare; the string length might
254 if ( searchKey->nodeName.length == 0 || trialKey->nodeName.length == 0 )
255 result = searchKey->nodeName.length
296 int length; local
477 int length; local
[all...]

Completed in 162 milliseconds

<<11121314151617181920>>