Lines Matching defs:offset
178 unsigned int offset,
184 CHECK(args[offset]->IsUint32()); // SignConfiguration::Mode
186 static_cast<SignConfiguration::Mode>(args[offset].As<Uint32>()->Value());
188 CHECK(args[offset + 1]->IsString()); // Hash
189 CHECK(args[offset + 2]->IsObject()); // Key
191 Utf8Value digest(env->isolate(), args[offset + 1]);
199 ASSIGN_OR_RETURN_UNWRAP(&key, args[offset + 2], Nothing<bool>());
202 ArrayBufferOrViewContents<char> data(args[offset + 3]);
211 if (!args[offset + 4]->IsUndefined()) {
212 ArrayBufferOrViewContents<char> signature(args[offset + 4]);