Lines Matching refs:testValue
203 uint64_t testValue = UINT64_MAX; variable
206 ASSERT_CHECK_CALL(napi_create_bigint_uint64(env, testValue, &result));
215 uint64_t testValue = 0xffffffffffffffff; variable
217 ASSERT_CHECK_CALL(napi_create_bigint_uint64(env, testValue, &result));
222 ASSERT_EQ(resultValue, testValue);
226 uint64_t testValue = 9007199254740991; variable
228 ASSERT_CHECK_CALL(napi_create_bigint_uint64(env, testValue, &result));
233 ASSERT_EQ(resultValue, testValue);
243 int64_t testValue = INT64_MAX; variable
246 ASSERT_CHECK_CALL(napi_create_bigint_int64(env, testValue, &result));
255 int64_t testValue = 9007199254740991; variable
257 ASSERT_CHECK_CALL(napi_create_bigint_int64(env, testValue, &result));
262 ASSERT_EQ(resultValue, testValue);
266 int64_t testValue = -1; variable
268 ASSERT_CHECK_CALL(napi_create_bigint_int64(env, testValue, &result));
273 ASSERT_EQ(resultValue, testValue);
586 static bool testValue = false; variable
591 testValue = true; in __anon7f33334f0402()
595 ASSERT_TRUE(testValue);