Lines Matching refs:length
51 interprocess_token->length = 0;
80 OM_uint32 length;
110 length = token.length + 4 + ctx->mech_type->length;
111 interprocess_token->length = length;
112 interprocess_token->value = malloc(length);
118 length = ctx->mech_type->length;
119 buf[3] = (unsigned char) (length & 0xFF);
120 length >>= 8;
121 buf[2] = (unsigned char) (length & 0xFF);
122 length >>= 8;
123 buf[1] = (unsigned char) (length & 0xFF);
124 length >>= 8;
125 buf[0] = (unsigned char) (length & 0xFF);
127 (size_t)ctx->mech_type->length);
128 (void) memcpy(buf+4+ctx->mech_type->length, token.value, token.length);