HomeSort by relevance Sort by last modified time
    Searched refs:That (Results 51 - 75 of 118) sorted by null

1 23 4 5

  /external/syzkaller/vendor/github.com/golang/protobuf/ptypes/timestamp/
timestamp.pb.go 15 // This is a compile-time assertion to ensure that this generated file
26 // seconds long, i.e. leap seconds are "smeared" so that no leap second
29 // By restricting to that range, we ensure that we can convert to
78 // [RFC 3339](https://www.ietf.org/rfc/rfc3339.txt) format. That is, the
106 // that count forward in time. Must be from 0 to 999,999,999
  /external/syzkaller/vendor/github.com/google/go-cmp/cmp/
path.go 3 // license that can be found in the LICENSE.md file.
18 // The first Path element is always an operation-less PathStep that exists
23 // embedded struct themselves. That is, an exported field from the
44 // all of the indexes to be shifted. If an index is -1, then that
45 // indicates that the element does not exist in the associated slice.
95 // If the path is empty, this returns a non-nil PathStep that reports a nil Type.
  /external/webrtc/webrtc/tools/rtcbot/
botmanager.js 4 // that can be found in the LICENSE file in the root of the source
9 // botmanager.js module allows a test to spawn bots that expose an RPC API
20 // BotManager runs a HttpsServer that serves bots assets and and WebSocketServer
21 // that listens to incoming connections. Once a connection is available it
96 // endpoint with the bot. Once that stream is available it establishes a dnode
126 // That page once loaded, connects to the websocket server run by BotManager
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
plistlib.py 44 pl[u'\xc5benraa'] = "That was a unicode key."
  /external/libunwind/doc/
libunwind.tex 73 to the current frame, that is, the stack frame that corresponds to the
77 uncover the entire call-chain that led to the activation of function
79 that there are more frames in the chain, zero indicates that the end
80 of the chain has been reached, and any negative value indicates that
86 that sometimes has to move ``down'' by one stack frame could maintain
92 back \Var{prev} to \Var{curr} whenever that is necessary. In the most
94 frame and that way it could move up and down the callframe-chain at
98 registers that were preserved for the current stack frame (a
    [all...]
  /external/python/cpython2/Lib/
plistlib.py 44 pl[u'\xc5benraa'] = "That was a unicode key."
  /build/blueprint/
ninja_strings.go 86 // variable names that the string references.
231 // The brackets were immediately closed. That's no good.
334 // TODO(jeffrygaston): do escaping so that toNinjaName won't ever output duplicate
  /build/soong/third_party/zip/
zip_test.go 3 // license that can be found in the LICENSE file.
5 // Tests that involve both reading and writing.
222 // fakeHash32 is a dummy Hash32 that always returns 0.
244 // That's the magic marker for a 64-bit file, so even though
292 // read back zip file and check that we get to the end of it
  /external/antlr/runtime/ActionScript/project/src/org/antlr/runtime/tree/
BaseTreeAdaptor.as 9 /** A TreeAdaptor that works with any Tree implementation. */
12 * track ourselves. That's ok, it's only for debugging, though it's
22 /** create tree node that holds the start and stop tokens associated
48 /** This is generic in the sense that it will work with any kind of
73 * make sure that this is consistent with have the user will build
103 * Be advised that it's ok for newRoot to point at oldRoot's
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/translit/
dumpICUrules.bat 23 # This perl script creates ICU transliterator data files, that live
27 # The transformation that is done is very minimal. The script assumes
28 # that the input files use only # comments
29 # and that they follow a rigid format.
36 # should be run after that.
80 # That is, must have length(%NAME_MAP{x}) <= 16
256 // corresponding ICU4J file, which is the master file that receives
  /external/syzkaller/dashboard/app/
reporting_test.go 2 // Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file.
72 // Now add syz repro and check that we get another bug report.
103 // Check that bug updates for the first reporting fail now.
108 // ensure that we still report the original crash in the next reporting.
109 // That's what we've upstreammed, it's bad to switch crashes without reason.
113 // Check that we get the report in the second reporting.
124 // Check that that we can't upstream the bug in the final reporting.
270 // Now close the original bug, and check that new bugs for dup are now created.
317 // Test that marking dups across reporting levels is not permitted
    [all...]
  /external/syzkaller/vendor/github.com/golang/protobuf/proto/
message_set.go 7 // modification, are permitted provided that the following conditions are
60 // That is the MessageSet wire format. We can't use a proto to generate these
61 // because that would introduce a circular dependency between it and this package.
78 // that may be stored in a MessageSet.
212 // We can assume that ext.enc is set because we are unmarshaling.
295 // This is fairly tricky, and it's not clear that it is needed.
299 // A global registry of types that can be used in a MessageSet.
  /external/tensorflow/tensorflow/contrib/verbs/
patch_notes_verbs_with_0_copies.md 20 1. At first stage we will keep changes to the current implementation to the minimum possible. The expense will be that we may have unused or unnecessary code leftovers, which may also affect performance.
22 The design of the solution aims that we will achieve both stages with relative ease.
27 2. The address of the destination Tensor needs to be sent to the sender side for writing, meaning that the result/proxy tensor should be pre-allocated on the receiver side, prior to sending the tensor request. In order to do that, we need to know its meta-data, i.e. shape and data-type for DMAble tensors, and proto-size for serialized tensors. Unfortunately, this information is only available on the sender side which complicates manners. In order to avoid sending extra messages for querying the meta-data on each step, we store a local meta-data cache per tensor. Based on the assumption that the meta-data of a tensor rarely changes between steps, we expect that on most times the cache will only be updated once. When the sender receives a request for a tensor, if it is the first time this tensor is requested, or in the rare case that the meta-data did change, the sender will first send a meta-data response, on which the receiver will update the local cache, and reallocate the result/proxy tensors if required. When the receiver sends the tensor request, it will contain also the meta-data currently stored in its local cache, so the sender can compare it to see if there was a change.
28 3. When the sender writes the tensor content to the result tensor, no additional data is being written with it. That means we need to reside on ibverbs immediate (uint32_t) to indicate which request we are responding to (in order to trigger the receive callback). The easiest and most elegant way is to key the recv callback with a unique request_index (uint32_t), instead of the current key_with_step_id (string).
30 5. With the addition of tensor pre-allocation, we noticed there is a large code similarity between sending the first tensor request and re-sending the request in case of meta-data changes. After implementing a common method for tensor pre-allocation, it turned out that implementation becomes much simpler by encapsulating the process of request sending/re-sending, meta-data response callback and content response callback, all in a single "Request" class. The request class holds all the relevant request information, which reduces excessive parameter passing and lambda capturing. This decision is purely for elegance and code simplicity, and we decided to implement it in first stage because it makes the implementation much easier.
48 The protocol messages themselves will remain mostly unchanged at the first stage, but will be used differently, as described below. The current messages structures already have most of the required fields for the new implementation. The only change is the "buffer_size" field which is no longer used since we are no longer sending additional information with the tensor, and thus it is now always equal to the "tensor_bytes" field. Instead, we use that field to pass the "request_index"
    [all...]
  /external/u-boot/board/sandbox/
README.sandbox 32 Note that standalone/API support is not available at present.
75 Assuming that CONFIG_SANDBOX_SDL is defined when building, you can run the
81 that window has the focus then you will be able to type commands as you
93 that you can use arrow keys for command editing and history, but if you
123 function is used throughout U-Boot to ensure that emulated memory is used
161 It is also possible to tell U-Boot that it has jumped from a temporary
162 previous U-Boot binary, with the -j option. That binary is automatically
163 removed by the U-Boot that gets the -j option. This allows you to write
205 means that all of the Ethernet frame is included. This allows the U-Boot network
207 involved in forming the packets that end up on the wire. To receive th
    [all...]
  /external/clang/include/clang/AST/
StmtOpenMP.h 388 OMPLoopDirective(const T *That, StmtClass SC, OpenMPDirectiveKind Kind,
392 : OMPExecutableDirective(That, SC, Kind, StartLoc, EndLoc, NumClauses,
545 /// enclosing schedule or null if that does not apply.
548 /// enclosing schedule or null if that does not apply.
    [all...]
  /external/swiftshader/third_party/SPIRV-Tools/
Android.mk 167 # TODO(dneto): Build a single set of tables that embeds versioning differences on
168 # a per-item basis. That must happen before SPIR-V 1.4, etc.
  /external/syzkaller/vendor/github.com/google/go-cmp/cmp/internal/diff/
diff.go 3 // license that can be found in the LICENSE.md file.
11 // This package prioritizes performance over accuracy. That is, the run time
19 // Identity indicates that a symbol pair is identical in both list X and Y.
21 // UniqueX indicates that a symbol only exists in X and not Y.
23 // UniqueY indicates that a symbol only exists in Y and not X.
25 // Modified indicates that a symbol pair is a modification of each other.
88 // NSame is the number of sub-elements that are equal.
89 // NDiff is the number of sub-elements that are not equal.
98 // (i.e., those that return Result{1, 0} or Result{0, 1}) to be similar.
102 // Use NSame+1 to offset NSame so that binary comparisons are similar
    [all...]
  /external/syzkaller/vendor/golang.org/x/net/http2/hpack/
hpack.go 3 // license that can be found in the LICENSE file.
39 // Sensitive means that this header field should never be
45 // That is, it reports whether it starts with a colon.
71 // Name and/or Value by hand, but we don't care, because that
150 // SetAllowedMaxDynamicTableSize sets the upper bound that the encoded
245 // that p will contain a complete header block.
276 // errNeedMore is an internal sentinel error value that means the
458 // anyway. This does mean that huffman decoding errors for non-indexed
  /external/syzkaller/vendor/golang.org/x/net/http2/
writesched_priority.go 3 // license that can be found in the LICENSE file.
25 // prioritization, since the stream could be given a priority that is
28 // become closed. The longer state is retained, the lower the chance that
37 // Similarly, streams that are in the "idle" state can be assigned
44 // ThrottleOutOfOrderWrites enables write throttling to help ensure that
50 // amount of data from B to minimize the amount of bandwidth that B can
55 // NewPriorityWriteScheduler constructs a WriteScheduler that schedules
155 // f(n, openParent) takes two arguments: the node to visit, n, and a bool that is true
215 // Prefer the subtree that has sent fewer bytes relative to its weight.
230 // The root queues control frames that are not associated with any stream
    [all...]
  /external/syzkaller/vendor/golang.org/x/oauth2/
oauth2.go 3 // license that can be found in the LICENSE file.
65 // A TokenSource is anything that can return a token.
83 // "access_type" field that gets sent in the URL returned by
117 // that asks for permissions for the required scopes explicitly.
120 // always provide a non-zero string and validate that it matches the
194 // TokenSource returns a TokenSource that returns t until t expires,
212 // tokenRefresher is a TokenSource that makes "grant_type"=="refresh_token"
243 // reuseTokenSource is a TokenSource that holds a single token in memory
271 // StaticTokenSource returns a TokenSource that always returns the same token.
273 // useful for tokens that never expire
    [all...]
  /external/syzkaller/vendor/google.golang.org/appengine/datastore/
load.go 3 // license that can be found in the LICENSE file.
282 // initField is similar to reflect's Value.FieldByIndex, in that it
316 // It is valid to load an entity into a struct that cannot fully represent it.
317 // That case returns an error, but the caller is free to ignore it.
375 // propValue returns a Go value that combines the raw PropertyValue with a
419 // indexValue is a Property value that is created when entities are loaded from
  /external/boringssl/src/crypto/fipsmodule/bn/asm/
armv8-mont.pl 24 # that dedicated squaring procedure is a must. Well, actually all
28 # compiler-generated code. Recall that compiler is instructed to use
35 # Squaring procedure that handles lengths divisible by 8 improves
111 // observe that condition for carry is quite simple:
112 // $lo0 being non-zero. So that carry can be calculated
113 // by adding -1 to $lo0. That's what next instruction does.
588 // note that carry flag is guaranteed
640 ldp $a1,$a3,[$t0,#8*0] // recall that $t0 is &a[0]
844 // note that carry flag is guaranteed
882 ldp $a0,$a1,[$t2,#8*0] // recall that $t2 is &n[0
    [all...]
  /external/fonttools/Doc/source/designspaceLib/
readme.rst 12 A couple of differences between things that use designspaces:
25 objects that store the data in attributes. Data is added to the document
53 location uses an axis that is not defined it will be ignored.
55 axis names, so that we can..
78 dictionaries using the language code as key. That means that there are
88 glyphname pairs: the glyphs that need to be substituted. For a rule to be triggered
92 The ``sub`` element contains a pair of glyphnames. The ``name`` attribute is the glyph that should be visible when the rule evaluates to **False**. The ``with`` attribute is the glyph that should be visible when the rule evaluates to **True**.
98 that the original shape is still available. For instance, if a rul
    [all...]
  /build/soong/android/
rule_builder.go 68 // that will print an error listing the missing dependencies and fail.
88 // created by this method. That can be mutated through their methods in any order, as long as the mutations do not
96 // Temporary marks an output of a command as an intermediate file that will be used as an input to another command
102 // DeleteTemporaryFiles adds a command to the rule that deletes any outputs that have been marked using Temporary
118 // Inputs returns the list of paths that were passed to the RuleBuilderCommand methods that take input paths, such
120 // that are also outputs of another command in the same RuleBuilder are filtered out.
155 // Outputs returns the list of paths that were passed to the RuleBuilderCommand methods that take output paths, suc
    [all...]
  /external/golang-protobuf/proto/
extensions.go 7 // modification, are permitted provided that the following conditions are
57 // proto compiler that may be extended.
66 // version of the proto compiler that may be extended.
73 // extensionAdapter is a wrapper around extendableProtoV1 that implements extendableProto.
93 // If the proto message has the old extension format, it returns a wrapper that implements
128 // The struct must be indirect so that if a user inadvertently copies a
133 // It is up to the client to ensure that write operations to p.extensionMap are
165 ExtendedType Message // nil pointer to the type that is being extended
198 // The reason for the divergence is so that the storage type more naturally
229 // checkExtensionTypes checks that the given extension is valid for pb
    [all...]

Completed in 1998 milliseconds

1 23 4 5