Lines Matching refs:testValue
316 int32_t testValue = INT32_MAX;
318 ASSERT_CHECK_CALL(napi_create_int32(env, testValue, &result));
326 uint32_t testValue = UINT32_MAX;
328 ASSERT_CHECK_CALL(napi_create_uint32(env, testValue, &result));
336 int64_t testValue = 9007199254740991;
338 ASSERT_CHECK_CALL(napi_create_int64(env, testValue, &result));
343 ASSERT_EQ(resultValue, testValue);
346 double testValue = DBL_MAX;
348 ASSERT_CHECK_CALL(napi_create_double(env, testValue, &result));
2793 int64_t testValue = INT64_MAX;
2796 ASSERT_CHECK_CALL(napi_create_bigint_int64(env, testValue, &result));
3224 int64_t testValue = INT64_MAX;
3227 ASSERT_CHECK_CALL(napi_create_bigint_int64(env, testValue, &argument));
6466 int64_t testValue = INT64_MAX;
6468 napi_create_bigint_int64(env, testValue, &value);
6479 int64_t testValue = INT64_MAX;
6481 napi_create_bigint_int64(env, testValue, &value);
6504 uint64_t testValue = UINT64_MAX;
6506 napi_create_bigint_uint64(env, testValue, &value);
6529 uint64_t testValue = UINT64_MAX;
6531 napi_create_bigint_uint64(env, testValue, &value);
6542 uint64_t testValue = UINT64_MAX;
6544 napi_create_bigint_uint64(env, testValue, &value);