Home
last modified time | relevance | path

Searched refs:rel (Results 1 – 25 of 369) sorted by relevance

12345678910>>...15

/third_party/elfutils/tests/
Drun-dwflsyms.sh76 35: FUNC LOCAL deregister_tm_clones (0) 0x710, rel: 0x710 (.text)
77 36: FUNC LOCAL register_tm_clones (0) 0x740, rel: 0x740 (.text)
78 37: FUNC LOCAL __do_global_dtors_aux (0) 0x780, rel: 0x780 (.text)
81 40: FUNC LOCAL frame_dummy (0) 0x7c0, rel: 0x7c0 (.text)
86 45: FUNC LOCAL foo (20) 0x814, rel: 0x814 (.text)
95 54: FUNC GLOBAL __libc_csu_fini (2) 0x8f0, rel: 0x8f0 (.text)
99 58: FUNC GLOBAL bar (44) 0x828, rel: 0x828 (.text)
100 59: FUNC GLOBAL _fini (0) 0x8f4, rel: 0x8f4 (.fini)
107 66: FUNC GLOBAL __libc_csu_init (137) 0x860, rel: 0x860 (.text)
109 68: FUNC GLOBAL _start (0) 0x6e0, rel: 0x6e0 (.text)
[all …]
Drun-readelf-zdebug-rel.sh44 testfiles testfile-debug-rel.o testfile-debug-rel-g.o testfile-debug-rel-z.o
65 decl_file (data1) testfile-zdebug-rel.c (1)
77 decl_file (data1) testfile-zdebug-rel.c (1)
83 decl_file (data1) testfile-zdebug-rel.c (1)
90 decl_file (data1) testfile-zdebug-rel.c (1)
96 decl_file (data1) testfile-zdebug-rel.c (1)
121 …nfo.out | testrun_compare ${abs_top_builddir}/src/readelf -U --debug-dump=info testfile-debug-rel.o
123 …fo'/" | testrun_compare ${abs_top_builddir}/src/readelf -U --debug-dump=info testfile-debug-rel-g.o
125 …o.out | testrun_compare ${abs_top_builddir}/src/readelf -U --debug-dump=info testfile-debug-rel-z.o
143 … loc.out | testrun_compare ${abs_top_builddir}/src/readelf -U --debug-dump=loc testfile-debug-rel.o
[all …]
/third_party/nghttp2/src/
Dhttp2_test.cc637 StringRef::from_lit(R"(<url>; rel=preload; anchor="")")); in test_http2_parse_link_header()
644 StringRef::from_lit(R"(<url>; rel=preload; anchor="#foo")")); in test_http2_parse_link_header()
650 StringRef::from_lit("<url>; rel=preload; anchor=f")); in test_http2_parse_link_header()
657 R"(<url>; rel=preload; anchor="#foo", <url2>; rel=preload)")); in test_http2_parse_link_header()
664 StringRef::from_lit(R"(<url>; rel=preload; loadpolicy="next")")); in test_http2_parse_link_header()
670 StringRef::from_lit(R"(<url>; rel=preload; loadpolicy="")")); in test_http2_parse_link_header()
677 StringRef::from_lit(R"(<url>; rel=preload; ANCHOR="#foo", <url2>; )" in test_http2_parse_link_header()
686 StringRef::from_lit("<url>; rel=preload; nopush")); in test_http2_parse_link_header()
692 StringRef::from_lit("<url>; rel=preload; nopush; foo")); in test_http2_parse_link_header()
698 StringRef::from_lit("<url>; nopush; rel=preload")); in test_http2_parse_link_header()
[all …]
/third_party/skia/third_party/externals/tint/src/reader/wgsl/
Dparser_impl_relational_expression_test.cc31 auto* rel = e->As<ast::BinaryExpression>(); in TEST_F() local
32 EXPECT_EQ(ast::BinaryOp::kLessThan, rel->op); in TEST_F()
34 ASSERT_TRUE(rel->lhs->Is<ast::IdentifierExpression>()); in TEST_F()
35 auto* ident = rel->lhs->As<ast::IdentifierExpression>(); in TEST_F()
38 ASSERT_TRUE(rel->rhs->Is<ast::BoolLiteralExpression>()); in TEST_F()
39 ASSERT_TRUE(rel->rhs->As<ast::BoolLiteralExpression>()->value); in TEST_F()
51 auto* rel = e->As<ast::BinaryExpression>(); in TEST_F() local
52 EXPECT_EQ(ast::BinaryOp::kGreaterThan, rel->op); in TEST_F()
54 ASSERT_TRUE(rel->lhs->Is<ast::IdentifierExpression>()); in TEST_F()
55 auto* ident = rel->lhs->As<ast::IdentifierExpression>(); in TEST_F()
[all …]
Dparser_impl_multiplicative_expression_test.cc31 auto* rel = e->As<ast::BinaryExpression>(); in TEST_F() local
32 EXPECT_EQ(ast::BinaryOp::kMultiply, rel->op); in TEST_F()
34 ASSERT_TRUE(rel->lhs->Is<ast::IdentifierExpression>()); in TEST_F()
35 auto* ident = rel->lhs->As<ast::IdentifierExpression>(); in TEST_F()
38 ASSERT_TRUE(rel->rhs->Is<ast::BoolLiteralExpression>()); in TEST_F()
39 ASSERT_TRUE(rel->rhs->As<ast::BoolLiteralExpression>()->value); in TEST_F()
51 auto* rel = e->As<ast::BinaryExpression>(); in TEST_F() local
52 EXPECT_EQ(ast::BinaryOp::kDivide, rel->op); in TEST_F()
54 ASSERT_TRUE(rel->lhs->Is<ast::IdentifierExpression>()); in TEST_F()
55 auto* ident = rel->lhs->As<ast::IdentifierExpression>(); in TEST_F()
[all …]
Dparser_impl_equality_expression_test.cc31 auto* rel = e->As<ast::BinaryExpression>(); in TEST_F() local
32 EXPECT_EQ(ast::BinaryOp::kEqual, rel->op); in TEST_F()
34 ASSERT_TRUE(rel->lhs->Is<ast::IdentifierExpression>()); in TEST_F()
35 auto* ident = rel->lhs->As<ast::IdentifierExpression>(); in TEST_F()
38 ASSERT_TRUE(rel->rhs->Is<ast::BoolLiteralExpression>()); in TEST_F()
39 ASSERT_TRUE(rel->rhs->As<ast::BoolLiteralExpression>()->value); in TEST_F()
51 auto* rel = e->As<ast::BinaryExpression>(); in TEST_F() local
52 EXPECT_EQ(ast::BinaryOp::kNotEqual, rel->op); in TEST_F()
54 ASSERT_TRUE(rel->lhs->Is<ast::IdentifierExpression>()); in TEST_F()
55 auto* ident = rel->lhs->As<ast::IdentifierExpression>(); in TEST_F()
[all …]
Dparser_impl_additive_expression_test.cc31 auto* rel = e->As<ast::BinaryExpression>(); in TEST_F() local
32 EXPECT_EQ(ast::BinaryOp::kAdd, rel->op); in TEST_F()
34 ASSERT_TRUE(rel->lhs->Is<ast::IdentifierExpression>()); in TEST_F()
35 auto* ident = rel->lhs->As<ast::IdentifierExpression>(); in TEST_F()
38 ASSERT_TRUE(rel->rhs->Is<ast::BoolLiteralExpression>()); in TEST_F()
39 ASSERT_TRUE(rel->rhs->As<ast::BoolLiteralExpression>()->value); in TEST_F()
51 auto* rel = e->As<ast::BinaryExpression>(); in TEST_F() local
52 EXPECT_EQ(ast::BinaryOp::kSubtract, rel->op); in TEST_F()
54 ASSERT_TRUE(rel->lhs->Is<ast::IdentifierExpression>()); in TEST_F()
55 auto* ident = rel->lhs->As<ast::IdentifierExpression>(); in TEST_F()
[all …]
Dparser_impl_shift_expression_test.cc31 auto* rel = e->As<ast::BinaryExpression>(); in TEST_F() local
32 EXPECT_EQ(ast::BinaryOp::kShiftLeft, rel->op); in TEST_F()
34 ASSERT_TRUE(rel->lhs->Is<ast::IdentifierExpression>()); in TEST_F()
35 auto* ident = rel->lhs->As<ast::IdentifierExpression>(); in TEST_F()
38 ASSERT_TRUE(rel->rhs->Is<ast::BoolLiteralExpression>()); in TEST_F()
39 ASSERT_TRUE(rel->rhs->As<ast::BoolLiteralExpression>()->value); in TEST_F()
51 auto* rel = e->As<ast::BinaryExpression>(); in TEST_F() local
52 EXPECT_EQ(ast::BinaryOp::kShiftRight, rel->op); in TEST_F()
54 ASSERT_TRUE(rel->lhs->Is<ast::IdentifierExpression>()); in TEST_F()
55 auto* ident = rel->lhs->As<ast::IdentifierExpression>(); in TEST_F()
[all …]
Dparser_impl_logical_or_expression_test.cc31 auto* rel = e->As<ast::BinaryExpression>(); in TEST_F() local
32 EXPECT_EQ(ast::BinaryOp::kLogicalOr, rel->op); in TEST_F()
34 ASSERT_TRUE(rel->lhs->Is<ast::IdentifierExpression>()); in TEST_F()
35 auto* ident = rel->lhs->As<ast::IdentifierExpression>(); in TEST_F()
38 ASSERT_TRUE(rel->rhs->Is<ast::BoolLiteralExpression>()); in TEST_F()
39 ASSERT_TRUE(rel->rhs->As<ast::BoolLiteralExpression>()->value); in TEST_F()
/third_party/skia/third_party/externals/dawn/infra/config/global/generated/
Dluci-milo.cfg24 name: "buildbucket/luci.dawn.ci/linux-clang-rel-x64"
25 category: "linux|clang|rel"
29 name: "buildbucket/luci.dawn.ci/linux-clang-rel-x86"
30 category: "linux|clang|rel"
39 name: "buildbucket/luci.dawn.ci/mac-rel"
41 short_name: "rel"
54 name: "buildbucket/luci.dawn.ci/win-clang-rel-x64"
55 category: "win|clang|rel"
59 name: "buildbucket/luci.dawn.ci/win-clang-rel-x86"
60 category: "win|clang|rel"
[all …]
Dluci-scheduler.cfg8 id: "cron-linux-clang-rel-x64"
15 builder: "cron-linux-clang-rel-x64"
39 id: "linux-clang-rel-x64"
45 builder: "linux-clang-rel-x64"
49 id: "linux-clang-rel-x86"
55 builder: "linux-clang-rel-x86"
69 id: "mac-rel"
75 builder: "mac-rel"
99 id: "win-clang-rel-x64"
105 builder: "win-clang-rel-x64"
[all …]
Dcommit-queue.cfg30 name: "chromium/try/linux-dawn-rel"
33 name: "chromium/try/mac-dawn-rel"
36 name: "chromium/try/win-dawn-rel"
45 name: "dawn/try/linux-clang-rel-x64"
48 name: "dawn/try/linux-clang-rel-x86"
54 name: "dawn/try/mac-rel"
67 name: "dawn/try/win-clang-rel-x64"
70 name: "dawn/try/win-clang-rel-x86"
76 name: "dawn/try/win-msvc-rel-x64"
/third_party/musl/ldso/
Ddlstart.c24 size_t *rel, rel_size, base; in _dlstart_c() local
81 rel = (void *)dyn[DT_RELA]; in _dlstart_c()
83 for (; rel_size; rel+=3, rel_size-=3*sizeof(size_t)) { in _dlstart_c()
84 if (!IS_RELATIVE(rel[1], syms)) continue; in _dlstart_c()
85 for (j=0; rel[0]-segs[j].p_vaddr >= segs[j].p_memsz; j++); in _dlstart_c()
87 (rel[0] + segs[j].addr - segs[j].p_vaddr); in _dlstart_c()
88 if (R_TYPE(rel[1]) == REL_FUNCDESC_VAL) { in _dlstart_c()
91 + syms[R_SYM(rel[1])].st_value; in _dlstart_c()
94 size_t val = syms[R_SYM(rel[1])].st_value; in _dlstart_c()
96 *rel_addr = rel[2] + segs[j].addr - segs[j].p_vaddr + val; in _dlstart_c()
[all …]
/third_party/skia/third_party/externals/tint/infra/config/global/generated/
Dluci-milo.cfg19 name: "buildbucket/luci.tint.ci/linux-clang-rel-x64"
20 category: "linux|clang|rel"
29 name: "buildbucket/luci.tint.ci/linux-clang-rel-x86"
30 category: "linux|clang|rel"
39 name: "buildbucket/luci.tint.ci/mac-rel"
41 short_name: "rel"
49 name: "buildbucket/luci.tint.ci/win-clang-rel-x64"
50 category: "win|clang|rel"
59 name: "buildbucket/luci.tint.ci/win-clang-rel-x86"
60 category: "win|clang|rel"
[all …]
Dluci-scheduler.cfg28 id: "linux-clang-rel-x64"
34 builder: "linux-clang-rel-x64"
38 id: "linux-clang-rel-x86"
44 builder: "linux-clang-rel-x86"
58 id: "mac-rel"
64 builder: "mac-rel"
88 id: "win-clang-rel-x64"
94 builder: "win-clang-rel-x64"
98 id: "win-clang-rel-x86"
104 builder: "win-clang-rel-x86"
[all …]
/third_party/openGLES/specs/katex/
Dkatex.js2293 groupTypes.rel = function(group, options) {
3752 groupTypes.rel = function(group) {
8327 var rel = "rel";
8334 defineSymbol(math, main, rel, "\u2261", "\\equiv");
8335 defineSymbol(math, main, rel, "\u227a", "\\prec");
8336 defineSymbol(math, main, rel, "\u227b", "\\succ");
8337 defineSymbol(math, main, rel, "\u223c", "\\sim");
8338 defineSymbol(math, main, rel, "\u22a5", "\\perp");
8339 defineSymbol(math, main, rel, "\u2aaf", "\\preceq");
8340 defineSymbol(math, main, rel, "\u2ab0", "\\succeq");
[all …]
/third_party/openGLES/specs/es/katex/
Dkatex.js2293 groupTypes.rel = function(group, options) {
3752 groupTypes.rel = function(group) {
8327 var rel = "rel";
8334 defineSymbol(math, main, rel, "\u2261", "\\equiv");
8335 defineSymbol(math, main, rel, "\u227a", "\\prec");
8336 defineSymbol(math, main, rel, "\u227b", "\\succ");
8337 defineSymbol(math, main, rel, "\u223c", "\\sim");
8338 defineSymbol(math, main, rel, "\u22a5", "\\perp");
8339 defineSymbol(math, main, rel, "\u2aaf", "\\preceq");
8340 defineSymbol(math, main, rel, "\u2ab0", "\\succeq");
[all …]
/third_party/openGLES/specs/es/3.2/katex/
Dkatex.js2293 groupTypes.rel = function(group, options) {
3752 groupTypes.rel = function(group) {
8327 var rel = "rel";
8334 defineSymbol(math, main, rel, "\u2261", "\\equiv");
8335 defineSymbol(math, main, rel, "\u227a", "\\prec");
8336 defineSymbol(math, main, rel, "\u227b", "\\succ");
8337 defineSymbol(math, main, rel, "\u223c", "\\sim");
8338 defineSymbol(math, main, rel, "\u22a5", "\\perp");
8339 defineSymbol(math, main, rel, "\u2aaf", "\\preceq");
8340 defineSymbol(math, main, rel, "\u2ab0", "\\succeq");
[all …]
/third_party/openGLES/specs/gl/katex/
Dkatex.js2293 groupTypes.rel = function(group, options) {
3752 groupTypes.rel = function(group) {
8327 var rel = "rel";
8334 defineSymbol(math, main, rel, "\u2261", "\\equiv");
8335 defineSymbol(math, main, rel, "\u227a", "\\prec");
8336 defineSymbol(math, main, rel, "\u227b", "\\succ");
8337 defineSymbol(math, main, rel, "\u223c", "\\sim");
8338 defineSymbol(math, main, rel, "\u22a5", "\\perp");
8339 defineSymbol(math, main, rel, "\u2aaf", "\\preceq");
8340 defineSymbol(math, main, rel, "\u2ab0", "\\succeq");
[all …]
/third_party/selinux/libselinux/utils/
Davcstat.c97 struct avc_cache_stats tot, rel, last; in main() local
212 rel.lookups = tot.lookups - last.lookups; in main()
213 rel.hits = tot.hits - last.hits; in main()
214 rel.misses = tot.misses - last.misses; in main()
215 rel.allocations = tot.allocations - last.allocations; in main()
216 rel.reclaims = tot.reclaims - last.reclaims; in main()
217 rel.frees = tot.frees - last.frees; in main()
219 rel.lookups, rel.hits, rel.misses, in main()
220 rel.allocations, rel.reclaims, rel.frees); in main()
/third_party/gstreamer/gstreamer/tests/check/gst/
Dgsturi.c551 GstUri *base, *rel, *joined; in GST_START_TEST() local
559 rel = gst_uri_from_string ("#new_frag"); in GST_START_TEST()
560 joined = gst_uri_join (base, rel); in GST_START_TEST()
566 gst_uri_unref (rel); in GST_START_TEST()
569 rel = gst_uri_from_string ("?key=val"); in GST_START_TEST()
570 joined = gst_uri_join (base, rel); in GST_START_TEST()
576 gst_uri_unref (rel); in GST_START_TEST()
579 rel = gst_uri_from_string ("new_filename.xml"); in GST_START_TEST()
580 joined = gst_uri_join (base, rel); in GST_START_TEST()
586 gst_uri_unref (rel); in GST_START_TEST()
[all …]
/third_party/musl/libc-test/src/math/
Disless.c19 #define T(a,b,rel) do{ \ argument
20 TEST(isunordered(a, b), rel == UNORD); \
21 TEST(isless(a, b), rel == LESS); \
22 TEST(islessequal(a, b), rel == LESS || rel == EQUAL); \
23 TEST(islessgreater(a, b), rel == LESS || rel == GREATER); \
24 TEST(isgreater(a, b), rel == GREATER); \
25 TEST(isgreaterequal(a, b), rel == GREATER || rel == EQUAL); \
/third_party/node/test/es-module/
Dtest-esm-resolve-type.mjs29 const rel = (file) => path.join(tmpdir.path, file); function
31 const nmDir = rel('node_modules');
72 const mDir = rel(`node_modules/${moduleName}`);
73 const subDir = rel(`node_modules/${moduleName}/subdir`);
74 const pkg = rel(`node_modules/${moduleName}/package.json`);
75 const script = rel(`node_modules/${moduleName}/subdir/mainfile.${moduleExtenstion}`);
131 const mDir = rel(`node_modules/${moduleName}`);
132 const esSubDir = rel(`node_modules/${moduleName}/es`);
133 const cjsSubDir = rel(`node_modules/${moduleName}/lib`);
134 const pkg = rel(`node_modules/${moduleName}/package.json`);
[all …]
/third_party/ffmpeg/libavformat/tests/
Durl.c50 static void test(const char *base, const char *rel) in test() argument
55 ret = ff_make_absolute_url2(buf, sizeof(buf), base, rel, 0); in test()
57 printf("%50s %-20s => error %s\n", base, rel, av_err2str(ret)); in test()
60 printf("%50s %-20s => %s\n", base, rel, buf); in test()
61 ret = ff_make_absolute_url2(buf_dos, sizeof(buf_dos), base, rel, 1); in test()
64 ret = ff_make_absolute_url(buf_native, sizeof(buf_native), base, rel); in test()
68 printf("%50s %-20sDOS %s\n", base, rel, buf_dos); in test()
75 ff_make_absolute_url2(buf2, sizeof(buf2), buf2, rel, 0); in test()
77 printf("In-place handling of %s + %s failed\n", base, rel); in test()
/third_party/skia/third_party/externals/dawn/docs/
Dinfra.md16 - [dawn/try/linux-clang-rel-x64](https://ci.chromium.org/p/dawn/builders/try/linux-clang-rel-x64)
18 - [dawn/try/mac-rel](https://ci.chromium.org/p/dawn/builders/try/mac-rel)
20 - [dawn/try/win-clang-rel-x64](https://ci.chromium.org/p/dawn/builders/try/win-clang-rel-x64)
22 - [dawn/try/win-msvc-rel-x64](https://ci.chromium.org/p/dawn/builders/try/win-msvc-rel-x64)
54 - [chromium/try/linux-dawn-rel](https://ci.chromium.org/p/chromium/builders/try/linux-dawn-rel)
55 - [chromium/try/mac-dawn-rel](https://ci.chromium.org/p/chromium/builders/try/mac-dawn-rel)
56 - [chromium/try/win-dawn-rel](https://ci.chromium.org/p/chromium/builders/try/win-dawn-rel)
59 …- [chromium/try/dawn-linux-x64-deps-rel](https://ci.chromium.org/p/chromium/builders/try/dawn-linu…
60 …- [chromium/try/dawn-mac-x64-deps-rel](https://ci.chromium.org/p/chromium/builders/try/dawn-mac-x6…
61 …- [chromium/try/dawn-win10-x86-deps-rel](https://ci.chromium.org/p/chromium/builders/try/dawn-win1…
[all …]

12345678910>>...15