Home
last modified time | relevance | path

Searched +full:d3 +full:- +full:time +full:- +full:format (Results 1 – 25 of 558) sorted by relevance

12345678910>>...23

/aosp_15_r20/external/perfetto/infra/perfetto.dev/
H A Dpnpm-lock.yaml25 fs-extra:
34 node-watch:
43 /@braintree/sanitize-[email protected]:
44 …resolution: {integrity: sha512-s3jaWicZd0pkP0jf5ysyHUI/RE7MHos6qlToFcGWXVp+ykHOy77OUMrfbgJ9it2C5bo…
48 …resolution: {integrity: sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU+…
52 …resolution: {integrity: sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMg…
56 …resolution: {integrity: sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe…
60 …resolution: {integrity: sha512-j9ednRT81vYJ9OfVuXG6ERSTdEL1xVsNgqpkxMsbIabzSo3goCjDIveeGv5d03om39M…
64 …resolution: {integrity: sha512-lljVXpqXebpsijW71PZaCYeIcE5on1w5DlQy5WH6GLbFryLUrBD4932W/E2BSpfRJWs…
71 …resolution: {integrity: sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNT…
[all …]
/aosp_15_r20/external/perfetto/ui/
H A Dpnpm-lock.yaml23 '@codemirror/theme-one-dark':
41 '@types/color-convert':
62 '@types/w3c-web-usb':
68 color-convert:
71 devtools-protocol:
89 jsbn-rsa:
95 noice-json-rpc:
104 protobufjs-cli:
116 vega-lite:
133 '@rollup/plugin-commonjs':
[all …]
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/vendor/golang.org/x/telemetry/
Dpackage-lock.json9 "d3": "7.8.5" string
12 "@typescript-eslint/eslint-plugin": "5.59.6",
13 "@typescript-eslint/parser": "5.59.6",
15 "eslint-config-prettier": "8.8.0",
16 "npm-run-all": "4.1.5",
19 "stylelint-config-standard": "33.0.0",
23 "node_modules/@aashutoshrathi/word-wrap": {
25 "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz",
26 …"integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFw…
32 "node_modules/@babel/code-frame": {
[all …]
/aosp_15_r20/external/gemmlowp/doc/
H A Dkernel.md3 ## Kernels provide an inner-loop implementation, and a format
9 other low-level details, while achieving high performance. Thus a line had to be
14 In itself, a GEMM kernel is just an implementation of the inner-most loop in a
15 GEMM (That inner-most loop has to be over the 'depth' dimension so as to be able
22 computation, but also in the format of data that they operate on. Indeed, in
28 gemmlowp allows each GEMM kernel to dictate the format of data that it expects,
29 in addition to providing its inner-loop implementation.
31 The former is given by a 'Format' typedef, and the latter by a 'Run' method.
34 NEONKernel12x4Depth2 kernel, which specifies its format as
38 KernelSideFormat<CellFormat<4, 2>, 1> > Format;
[all …]
/aosp_15_r20/external/googleapis/google/cloud/timeseriesinsights/v1/
H A Dtimeseries_insights.proto7 // http://www.apache.org/licenses/LICENSE-2.0
36 option (google.api.oauth_scopes) = "https://www.googleapis.com/auth/cloud-platform";
157 // Cloud Storage. Each Event should be in JSON format, with one Event
158 // per line, also known as JSON Lines format.
164 // please see https://cloud.google.com/storage/docs/reference-uris.
168 // (including time and group ID).
186 // or we have seen this dataset but have fully GC-ed it.
277 // * Internally, we discretize time in equal-sized chunks and we assume an
291 // **NOTE**: JSON encoding should use a string to hold a 64-bit integer value,
315 // 0. The events must be newer than the current time minus
[all …]
/aosp_15_r20/build/soong/docs/
H A Dtidy.md1 # Clang-Tidy Rules and Checks
3 Android C/C++ source files can be checked by clang-tidy for issues like
4 coding style, error-prone/performance patterns, and static flow analysis.
6 [clang-tidy document](https://clang.llvm.org/extra/clang-tidy)
8 [clang-tidy checks](https://clang.llvm.org/extra/clang-tidy/checks/list.html).
12 The simplest way to enable clang-tidy checks is
18 This will turn on the global default to run clang-tidy for every required
19 C/C++ source file compilation. The global default clang-tidy checks
20 do not include time-consuming static analyzer checks. To enable those
26 The default global clang-tidy checks and flags are defined in
[all …]
/aosp_15_r20/external/libaom/third_party/libyuv/source/
H A Dscale_neon.cc4 * Use of this source code is governed by a BSD-style license
105 "vld4.8 {d0, d1, d2, d3}, [%0]! \n" // src line 0 in ScaleRowDown4_NEON()
159 "vld4.8 {d0, d1, d2, d3}, [%0]! \n" // src line 0 in ScaleRowDown34_NEON()
161 "vmov d2, d3 \n" // order d0, d1, d2 in ScaleRowDown34_NEON()
168 : "d0", "d1", "d2", "d3", "memory", "cc"); in ScaleRowDown34_NEON()
179 "vld4.8 {d0, d1, d2, d3}, [%0]! \n" // src line 0 in ScaleRowDown34_0_Box_NEON()
195 "vmlal.u8 q11, d3, d24 \n" in ScaleRowDown34_0_Box_NEON()
201 "vqrshrn.u16 d3, q11, #2 \n" in ScaleRowDown34_0_Box_NEON()
213 "vmlal.u8 q8, d3, d24 \n" in ScaleRowDown34_0_Box_NEON()
236 "vld4.8 {d0, d1, d2, d3}, [%0]! \n" // src line 0 in ScaleRowDown34_1_Box_NEON()
[all …]
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/date_time/test/gregorian/
Dtestformatters.cpp17 check("check string: " + ds1, ds1 == "2002-Jan-02"); in main()
24 check("check sql string: "+sds1, sds1 == "2002-01-02"); in main()
28 check("check string: "+ds2, ds2 == "2001-Dec-30"); in main()
30 check("check iso extended string: "+ids2, ids2 == "2001-12-30"); in main()
33 date d3(neg_infin); in main() local
34 std::cout << "|" << to_simple_string(d3) << "|" << std::endl; in main()
36 (to_simple_string(d3) == std::string("-infinity"))); in main()
43 (to_simple_string(d5) == std::string("not-a-date-time"))); in main()
46 check("check period format", in main()
47 (to_simple_string(p1) == std::string("[2000-Jan-01/2000-Dec-31]"))); in main()
[all …]
/aosp_15_r20/external/cronet/third_party/icu/source/test/intltest/
H A Dastrotst.cpp5 * Copyright (c) 1996-2016, International Business Machines Corporation and
24 #define CASE(id,test) case id: name = #test; if (exec) { logln(#test "---"); logln((UnicodeString)"…
69 gc = Calendar::createInstance(TimeZone::getGMT()->clone(), status); in initAstro()
97 gc->clear(); in TestSolarLongitude()
98 gc->set(tests[i].d[0], tests[i].d[1]-1, tests[i].d[2], tests[i].d[3], tests[i].d[4]); in TestSolarLongitude()
100 astro->setDate(gc->getTime(status)); in TestSolarLongitude()
102 double longitude = astro->getSunLongitude(); in TestSolarLongitude()
105 astro->getSunPosition(result); in TestSolarLongitude()
125 gc->clear(); in TestLunarPosition()
126 …gc->set((int32_t)tests[i][0], (int32_t)tests[i][1]-1, (int32_t)tests[i][2], (int32_t)tests[i][3], … in TestLunarPosition()
[all …]
/aosp_15_r20/external/gemmlowp/standalone/
H A Dneon-gemm-kernel-benchmark.cc7 // http://www.apache.org/licenses/LICENSE-2.0
15 // This is a standalone testbed and benchmark for gemmlowp-style GEMM kernels,
23 // This program is entirely self-contained, and can be compiled manually
31 ~/android/toolchains/arm-linux-androideabi/bin/arm-linux-androideabi-clang++ \
32 -fPIE -pie -O3 --std=c++11 standalone/neon-gemm-kernel-benchmark.cc -o \
33 /tmp/benchmark -mfloat-abi=softfp -mfpu=neon-vfpv4 && adb push /tmp/benchmark \
36 ~/android/toolchains/aarch64-linux-android/bin/aarch64-linux-android-clang++ \
37 -fPIE -static -O3 --std=c++11 standalone/neon-gemm-kernel-benchmark.cc -o \
109 // LHS = "left-hand side"
110 // RHS = "right-hand side"
[all …]
/aosp_15_r20/external/icu/icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/
H A DTimeZoneRegressionTest.java5 * Copyright (C) 2000-2014, International Business Machines Corporation and *
50 // user.timezone is a protected system property - ignore in Test4052967()
72 errln("Fail: Fix test to start with non-DST zone"); in Test4073215()
74 z.setEndRule(Calendar.MARCH, -1, Calendar.SUNDAY, 0); in Test4073215()
93 Date d3 = tempcal.getTime(); in Test4073215() local
94 if (z.inDaylightTime(d3)) { in Test4073215()
101 * (Assume transition time of 2:00 AM)
114 1997, Calendar.OCTOBER, 26, Calendar.SUNDAY, (2*60*60*1000)-1); in Test4084933()
119 1997, Calendar.OCTOBER, 26, Calendar.SUNDAY, (1*60*60*1000)-1); in Test4084933()
123 * Savings Time (PDT) does work at 2am. in Test4084933()
[all …]
/aosp_15_r20/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/timezone/
H A DTimeZoneRegressionTest.java6 * Copyright (C) 2000-2014, International Business Machines Corporation and *
53 // user.timezone is a protected system property - ignore in Test4052967()
75 errln("Fail: Fix test to start with non-DST zone"); in Test4073215()
77 z.setEndRule(Calendar.MARCH, -1, Calendar.SUNDAY, 0); in Test4073215()
96 Date d3 = tempcal.getTime(); in Test4073215() local
97 if (z.inDaylightTime(d3)) { in Test4073215()
104 * (Assume transition time of 2:00 AM)
117 1997, Calendar.OCTOBER, 26, Calendar.SUNDAY, (2*60*60*1000)-1); in Test4084933()
122 1997, Calendar.OCTOBER, 26, Calendar.SUNDAY, (1*60*60*1000)-1); in Test4084933()
126 * Savings Time (PDT) does work at 2am. in Test4084933()
[all …]
/aosp_15_r20/build/soong/third_party/zip/
H A Dreader_test.go2 // Use of this source code is governed by a BSD-style
18 "time"
23 Source func() (r io.ReaderAt, size int64) // if non-nil, used instead of testdata/<Name> file
32 Mtime string // optional, modified time in format "mm-dd-yy hh:mm:ss"
41 // is to set Size, which will then be checked against the header-reported size
43 // This last option is used for testing very large (multi-GB) compressed files.
51 // the values listed with unzip -l <zipfile>. However, the values
54 // The test files were created in Sydney, so there might be a time
55 // zone issue. The time zone information does have to be encoded
56 // somewhere, because otherwise unzip -l could not provide a different
[all …]
/aosp_15_r20/frameworks/base/services/tests/servicestests/src/com/android/server/criticalevents/
H A DCriticalEventLogTest.java8 * http://www.apache.org/licenses/LICENSE-2.0
46 import java.time.Duration;
57 /** Epoch time when the critical event log is instantiated. */
58 private static final long START_TIME_MS = 1577880000000L; // 2020-01-01 12:00:00.000 UTC
69 private static final String UUID_STRING = "123e4567-e89b-12d3-a456-556642440000";
101 watchdog(START_TIME_MS - 2000, "Old watchdog 1"), in loadEvents_validContents()
102 watchdog(START_TIME_MS - 1000, "Old watchdog 2"), in loadEvents_validContents()
176 watchdog(START_TIME_MS - 5000, "Old watchdog 6"), in loadEvents_numEventsExceedsBufferCapacity()
177 watchdog(START_TIME_MS - 4000, "Old watchdog 7"), in loadEvents_numEventsExceedsBufferCapacity()
178 watchdog(START_TIME_MS - 3000, "Old watchdog 8"), in loadEvents_numEventsExceedsBufferCapacity()
[all …]
/aosp_15_r20/external/libvpx/third_party/libyuv/source/
H A Dscale_neon.cc4 * Use of this source code is governed by a BSD-style license
105 "vld4.8 {d0, d1, d2, d3}, [%0]! \n" // src line 0 in ScaleRowDown4_NEON()
159 "vld4.8 {d0, d1, d2, d3}, [%0]! \n" // src line 0 in ScaleRowDown34_NEON()
161 "vmov d2, d3 \n" // order d0, d1, d2 in ScaleRowDown34_NEON()
168 : "d0", "d1", "d2", "d3", "memory", "cc"); in ScaleRowDown34_NEON()
179 "vld4.8 {d0, d1, d2, d3}, [%0]! \n" // src line 0 in ScaleRowDown34_0_Box_NEON()
195 "vmlal.u8 q11, d3, d24 \n" in ScaleRowDown34_0_Box_NEON()
201 "vqrshrn.u16 d3, q11, #2 \n" in ScaleRowDown34_0_Box_NEON()
213 "vmlal.u8 q8, d3, d24 \n" in ScaleRowDown34_0_Box_NEON()
236 "vld4.8 {d0, d1, d2, d3}, [%0]! \n" // src line 0 in ScaleRowDown34_1_Box_NEON()
[all …]
/aosp_15_r20/external/libyuv/source/
H A Dscale_neon.cc4 * Use of this source code is governed by a BSD-style license
105 "vld4.8 {d0, d1, d2, d3}, [%0]! \n" // src line 0 in ScaleRowDown4_NEON()
159 "vld4.8 {d0, d1, d2, d3}, [%0]! \n" // src line 0 in ScaleRowDown34_NEON()
161 "vmov d2, d3 \n" // order d0, d1, d2 in ScaleRowDown34_NEON()
168 : "d0", "d1", "d2", "d3", "memory", "cc"); in ScaleRowDown34_NEON()
179 "vld4.8 {d0, d1, d2, d3}, [%0]! \n" // src line 0 in ScaleRowDown34_0_Box_NEON()
195 "vmlal.u8 q11, d3, d24 \n" in ScaleRowDown34_0_Box_NEON()
201 "vqrshrn.u16 d3, q11, #2 \n" in ScaleRowDown34_0_Box_NEON()
213 "vmlal.u8 q8, d3, d24 \n" in ScaleRowDown34_0_Box_NEON()
236 "vld4.8 {d0, d1, d2, d3}, [%0]! \n" // src line 0 in ScaleRowDown34_1_Box_NEON()
[all …]
/aosp_15_r20/external/pytorch/torch/utils/viz/
H A DMemoryViz.js3 import * as d3 from "https://cdn.skypack.dev/d3@5";
4 import {axisLeft} from "https://cdn.skypack.dev/d3-axis@1";
5 import {scaleLinear} from "https://cdn.skypack.dev/d3-scale@1";
6 import {zoom, zoomIdentity} from "https://cdn.skypack.dev/d3-zoom@1";
7 import {brushX} from "https://cdn.skypack.dev/d3-brush@1";
49 'grid-column: 1; grid-row: 1; overflow: auto; font-family: monospace',
65 const selected_event = d3.select(
71 const div = d3.select(events_div.node().children[idx]);
72 div.attr('style', `background-color: ${schemeTableau10[5]}`);
83 d3.select('body').on('keydown', _e => {
[all …]
/aosp_15_r20/frameworks/base/services/tests/servicestests/src/com/android/server/hdmi/
H A DHdmiCecMessageValidatorTest.java8 * http://www.apache.org/licenses/LICENSE-2.0
189 assertMessageValidity("0F:32:45:4E:47:8C:49:D3:48").isEqualTo(OK); in isValid_setMenuLanguage()
244 // e.g. Monday (0x02) | Tuesday (0x04) -> Monday or Tuesday (0x06) in isValid_setAnalogueTimer_clearAnalogueTimer()
256 // Out of range Start Time - Hour in isValid_setAnalogueTimer_clearAnalogueTimer()
258 // Out of range Start Time - Minute in isValid_setAnalogueTimer_clearAnalogueTimer()
260 // Out of range Duration - Duration Hours in isValid_setAnalogueTimer_clearAnalogueTimer()
262 // Out of range Duration - Minute in isValid_setAnalogueTimer_clearAnalogueTimer()
278 // Services identified by Digital IDs - ARIB Broadcast System in isValid_setDigitalTimer_clearDigitalTimer()
280 // Service identified by Digital IDs - ATSC Broadcast System in isValid_setDigitalTimer_clearDigitalTimer()
282 // Service identified by Digital IDs - DVB Broadcast System in isValid_setDigitalTimer_clearDigitalTimer()
[all …]
/aosp_15_r20/external/gemmlowp/internal/
H A Dkernel_neon.h7 // http://www.apache.org/licenses/LICENSE-2.0
37 Format; typedef
50 // http://stackoverflow.com/questions/3898435/labels-in-gcc-inline-assembly in Run()
62 // A 2x4 cell of Rhs is stored in 16bit in d0--d1 (q0). in Run()
63 // A 12x2 block of 3 4x2 cells Lhs is stored in 16bit in d2--d7 in Run()
64 // (q1--q3). in Run()
65 // A 12x4 block of accumulators is stored in 32bit in q4--q15. in Run()
67 // +-----+-----+-----+-----+ in Run()
69 // Rhs +-----+-----+-----+-----+ in Run()
71 // +-----+-----+-----+-----+ in Run()
[all …]
/aosp_15_r20/external/libhevc/decoder/arm/
H A Dihevcd_fmt_conv_420sp_to_rgba8888.s9 @* http://www.apache.org/licenses/LICENSE-2.0
24 @* contains function definitions for format conversions
69 @* Register Usage : R0 - R14 *
92 STMFD SP!,{R4-R12,LR}
93 VPUSH {d8-d15}
95 @//R0 - Y PTR
96 @//R1 - UV PTR
97 @//R2 - RGB PTR
98 @//R3 - RGB PTR
99 @//R4 - PIC WIDTH
[all …]
/aosp_15_r20/external/icu/icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/
H A DDateFormatRegressionTest.java5 * Copyright (C) 2001-2015, International Business Machines Corporation and *
11 * Port From: ICU4C v1.8.1 : format : DateFormatRegressionTest
15 package com.ibm.icu.dev.test.format;
24 import java.text.Format;
63 fmtd = sdf.format(today, fmtd, pos); in Test4029195()
68 todayS = sdf.format(today, todayS, pos); in Test4029195()
79 rt = sdf.format(sdf.parse(todayS.toString()), rt, pos); in Test4029195()
100 String str = fmt.format(dt); in Test4052408()
150 fmt.format(dt, buf, pos); in Test4052408()
151 //char[] dst = new char[pos.getEndIndex() - pos.getBeginIndex()]; in Test4052408()
[all …]
/aosp_15_r20/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
H A DDateFormatRegressionTest.java6 * Copyright (C) 2001-2015, International Business Machines Corporation and *
12 * Port From: ICU4C v1.8.1 : format : DateFormatRegressionTest
16 package android.icu.dev.test.format;
25 import java.text.Format;
66 fmtd = sdf.format(today, fmtd, pos); in Test4029195()
71 todayS = sdf.format(today, todayS, pos); in Test4029195()
82 rt = sdf.format(sdf.parse(todayS.toString()), rt, pos); in Test4029195()
103 String str = fmt.format(dt); in Test4052408()
153 fmt.format(dt, buf, pos); in Test4052408()
154 //char[] dst = new char[pos.getEndIndex() - pos.getBeginIndex()]; in Test4052408()
[all …]
/aosp_15_r20/external/libaom/av1/common/arm/
H A Dhighbd_compound_convolve_sve2.c64 vcreate_s64((1 << (12 + FILTER_BITS)) + (1 << (12 + FILTER_BITS - 1))); in highbd_12_dist_wtd_convolve_x_8tap_sve2()
88 uint16x8_t d3 = highbd_12_convolve8_8_x(s3, filter, offset_lo); in highbd_12_dist_wtd_convolve_x_8tap_sve2() local
90 store_u16_8x4(d, dst_stride, d0, d1, d2, d3); in highbd_12_dist_wtd_convolve_x_8tap_sve2()
94 w -= 8; in highbd_12_dist_wtd_convolve_x_8tap_sve2()
98 height -= 4; in highbd_12_dist_wtd_convolve_x_8tap_sve2()
130 vcreate_s64((1 << (bd + FILTER_BITS)) + (1 << (bd + FILTER_BITS - 1))); in highbd_dist_wtd_convolve_x_8tap_sve2()
154 uint16x8_t d3 = highbd_convolve8_8_x(s3, filter, offset_lo); in highbd_dist_wtd_convolve_x_8tap_sve2() local
156 store_u16_8x4(d, dst_stride, d0, d1, d2, d3); in highbd_dist_wtd_convolve_x_8tap_sve2()
160 w -= 8; in highbd_dist_wtd_convolve_x_8tap_sve2()
164 height -= 4; in highbd_dist_wtd_convolve_x_8tap_sve2()
[all …]
/aosp_15_r20/external/ruy/ruy/
H A Dkernel_arm32.cc7 http://www.apache.org/licenses/LICENSE-2.0
77 // Float kernel for ARM32 out-of-order cores.
79 // use 16 128-bit NEON registers. This is a "first pass" kernel and not
80 // tuned. It is meant to run on out-of-order CPUs like the Krait 400 or A9.
87 // In ARM32 NEON, there are 16 128-bit "q" registers. These registers are in KernelFloat32Neon()
88 // each composed of two 64-bit "d" registers. The asm kernel below has the in KernelFloat32Neon()
90 // Registers q3 -- q10 are accumulators. During accumulation, in KernelFloat32Neon()
91 // q0 -- q2 (d0 -- d5) are used to load data from LHS and RHS. q0 and q1 in KernelFloat32Neon()
97 // /--------------------------| in KernelFloat32Neon()
99 // \--------------------------/ in KernelFloat32Neon()
[all …]
/aosp_15_r20/prebuilts/go/linux-x86/src/archive/zip/
Dreader_test.go2 // Use of this source code is governed by a BSD-style
21 "time"
26 Source func() (r io.ReaderAt, size int64) // if non-nil, used instead of testdata/<Name> file
37 ModTime time.Time
38 Modified time.Time
47 // is to set Size, which will then be checked against the header-reported size
49 // This last option is used for testing very large (multi-GB) compressed files.
64 Modified: time.Date(2010, 9, 5, 12, 12, 1, 0, timeZone(+10*time.Hour)),
70 Modified: time.Date(2010, 9, 5, 15, 52, 58, 0, timeZone(+10*time.Hour)),
76 Name: "test-trailing-junk.zip",
[all …]

12345678910>>...23