HomeSort by relevance Sort by last modified time
    Searched refs:Fetch (Results 1 - 25 of 68) sorted by null

1 2 3

  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/tic6x/
align-2.s 2 # execute packets can cross fetch packet boundaries.
8 # Fetch packet.
13 # Fetch packet.
23 # Fetch packet.
32 # Fetch packet.
42 # Fetch packet.
51 # Fetch packet.
61 # Fetch packet.
70 # Fetch packet.
80 # Fetch packet
    [all...]
align-1.s 6 # Fetch packet.
18 # Fetch packet.
21 # Fetch packet.
23 # Fetch packet.
32 # Fetch packet.
42 # Fetch packet.
51 # Fetch packet.
59 # Fetch packet.
66 # Fetch packet.
  /test/framework/harnesses/host_controller/build/
build_provider_local_fs.py 26 def Fetch(self, path):
build_provider_ab.py 53 def Fetch(self, branch, target, artifact_name, build_id="latest"):
build_provider_gcs.py 85 def Fetch(self, path):
  /external/curl/docs/cmdline-opts/
head.d 6 Fetch the headers only! HTTP-servers feature the command HEAD which this uses
  /external/google-breakpad/src/common/linux/
elf_symbols_to_module.cc 79 Fetch();
84 ELFSymbolIterator &operator++() { Fetch(); symbol_.index++; return *this; }
94 void Fetch() {
  /external/google-breakpad/src/common/
stabs_reader.h 157 EntryIterator &operator++() { Fetch(); entry_.index++; return *this; }
167 void Fetch();
stabs_reader.cc 55 Fetch();
58 void StabsReader::EntryIterator::Fetch() {
  /test/framework/harnesses/host_controller/command_processor/
command_fetch.py 24 """Command processor for fetch command.
33 command = "fetch"
34 command_detail = "Fetch a build artifact."
38 """Initializes the parser for fetch command."""
87 print("ERROR: uninitialized fetch type %s" % args.type)
105 device_images, test_suites = provider.Fetch(args.path)
108 device_images, test_suites, tools = provider.Fetch(args.path)
111 device_images, test_suites, fetch_environment = provider.Fetch(
118 print("ERROR: unknown fetch type %s" % args.type)
  /external/clang/test/SemaCXX/
class-base-member-init.cpp 107 void Fetch() {
  /external/skia/src/core/
SkMaskGamma.h 34 const SkColorSpaceLuminance& luminance = Fetch(gamma);
46 static const SkColorSpaceLuminance& Fetch(SkScalar gamma);
111 const SkColorSpaceLuminance& paintConvert = SkColorSpaceLuminance::Fetch(paintGamma);
112 const SkColorSpaceLuminance& deviceConvert = SkColorSpaceLuminance::Fetch(deviceGamma);
SkMaskGamma.cpp 57 /*static*/ const SkColorSpaceLuminance& SkColorSpaceLuminance::Fetch(SkScalar gamma) {
  /external/skqp/src/core/
SkMaskGamma.h 34 const SkColorSpaceLuminance& luminance = Fetch(gamma);
46 static const SkColorSpaceLuminance& Fetch(SkScalar gamma);
111 const SkColorSpaceLuminance& paintConvert = SkColorSpaceLuminance::Fetch(paintGamma);
112 const SkColorSpaceLuminance& deviceConvert = SkColorSpaceLuminance::Fetch(deviceGamma);
SkMaskGamma.cpp 57 /*static*/ const SkColorSpaceLuminance& SkColorSpaceLuminance::Fetch(SkScalar gamma) {
  /external/libtextclassifier/util/hash/
farmhash.cc 353 #undef Fetch
354 #define Fetch Fetch64
383 uint64_t a = Fetch(s) + k2;
384 uint64_t b = Fetch(s + len - 8);
409 uint64_t a = Fetch(s) * k1;
410 uint64_t b = Fetch(s + 8);
411 uint64_t c = Fetch(s + len - 8) * mul;
412 uint64_t d = Fetch(s + len - 16) * k2;
433 return WeakHashLen32WithSeeds(Fetch(s),
434 Fetch(s + 8)
    [all...]
  /prebuilts/go/darwin-x86/src/sync/
example_test.go 30 // Launch a goroutine to fetch the URL.
34 // Fetch the URL.
  /prebuilts/go/linux-x86/src/sync/
example_test.go 30 // Launch a goroutine to fetch the URL.
34 // Fetch the URL.
  /external/tensorflow/tensorflow/compiler/tf2xla/
tf2xla_util_test.cc 49 tf2xla::Fetch* fetch = config.add_fetch(); local
50 fetch->mutable_id()->set_node_name("baz");
51 fetch->mutable_id()->set_output_index(456);
52 fetch->set_name("baz_debug");
53 fetch = config.add_fetch();
54 fetch->mutable_id()->set_node_name("banana");
55 fetch->mutable_id()->set_output_index(0);
97 tf2xla::Fetch* fetch = config.add_fetch() local
118 tf2xla::Fetch* fetch = config.add_fetch(); local
142 tf2xla::Fetch* fetch = config.add_fetch(); local
154 auto* fetch = config.add_fetch(); local
    [all...]
  /external/v8/tools/release/
auto_push.py 44 # Fetch unfetched revisions.
45 self.vc.Fetch()
53 self.Git("fetch origin +refs/heads/lkgr:refs/heads/lkgr")
  /external/skia/src/effects/
SkLightingImageFilter.cpp 265 static inline uint32_t Fetch(const SkBitmap& src, int x, int y, const SkIRect& bounds) {
273 static inline uint32_t Fetch(const SkBitmap& src, int x, int y, const SkIRect& bounds) {
298 m[4] = PixelFetcher::Fetch(src, x, y, srcBounds);
299 m[5] = PixelFetcher::Fetch(src, x + 1, y, srcBounds);
300 m[7] = PixelFetcher::Fetch(src, x, y + 1, srcBounds);
301 m[8] = PixelFetcher::Fetch(src, x + 1, y + 1, srcBounds);
308 m[5] = PixelFetcher::Fetch(src, x + 1, y, srcBounds);
309 m[8] = PixelFetcher::Fetch(src, x + 1, y + 1, srcBounds);
323 m[1] = PixelFetcher::Fetch(src, x, y - 1, srcBounds);
324 m[2] = PixelFetcher::Fetch(src, x + 1, y - 1, srcBounds)
    [all...]
  /external/skqp/src/effects/
SkLightingImageFilter.cpp 265 static inline uint32_t Fetch(const SkBitmap& src, int x, int y, const SkIRect& bounds) {
273 static inline uint32_t Fetch(const SkBitmap& src, int x, int y, const SkIRect& bounds) {
298 m[4] = PixelFetcher::Fetch(src, x, y, srcBounds);
299 m[5] = PixelFetcher::Fetch(src, x + 1, y, srcBounds);
300 m[7] = PixelFetcher::Fetch(src, x, y + 1, srcBounds);
301 m[8] = PixelFetcher::Fetch(src, x + 1, y + 1, srcBounds);
308 m[5] = PixelFetcher::Fetch(src, x + 1, y, srcBounds);
309 m[8] = PixelFetcher::Fetch(src, x + 1, y + 1, srcBounds);
323 m[1] = PixelFetcher::Fetch(src, x, y - 1, srcBounds);
324 m[2] = PixelFetcher::Fetch(src, x + 1, y - 1, srcBounds)
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
BufferedTokenStream.cs 191 Fetch(n);
195 protected virtual void Fetch(int n) {
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
BufferedTokenStream.cs 220 Fetch(n);
224 protected virtual void Fetch(int n)
  /external/tensorflow/tensorflow/compiler/aot/
codegen_test.cc 169 tf2xla::Fetch* fetch = config.add_fetch(); local
170 fetch->mutable_id()->set_node_name("fetch0");
171 fetch->set_name("myfetch");

Completed in 605 milliseconds

1 2 3