HomeSort by relevance Sort by last modified time
    Searched defs:from (Results 276 - 300 of 2346) sorted by null

<<11121314151617181920>>

  /external/syslinux/com32/lib/zlib/
inflate.c 18 * - Change inffast.c entry and loop from avail_in >= 7 to >= 6
19 * - Remove unnecessary second byte pull from length extra in inffast.c
43 * - Move a comment on output buffer sizes from inffast.c to inflate.c
65 * - Changed loops from while (1) or do {} while (1) to for (;;), again to
141 /* extract wrap request from windowBits parameter */
232 fixed code decoding. Normally this returns fixed tables from inffixed.h.
354 upon return from inflate(), and since all distances after the first 32K of
448 /* Restore state from registers in inflate() */
466 /* Get a byte of input into the bit accumulator, or return from inflate()
477 not enough available input to do that, then return from inflate(). *
601 unsigned char FAR *from; \/* where to copy match bytes from *\/ local
    [all...]
  /external/tensorflow/tensorflow/compiler/jit/graphcycles/
graphcycles_test.cc 37 int from; member in struct:Edge
42 // Return whether "to" is reachable from "from".
43 static bool IsReachable(Edges *edges, int from, int to,
45 seen->insert(from); // we are investigating "from"; don't do it again
46 if (from == to) return true;
49 if (edge->from == from) {
71 int a = (*edges)[i].from;
267 int from = RandomNode(&rnd, &nodes); local
287 int from = edges[i].from; local
300 int from = RandomNode(&rnd, &nodes); local
    [all...]
  /external/tensorflow/tensorflow/core/framework/
variant_op_copy_test.cc 69 const StoredTensorValue& from, StoredTensorValue* to,
72 return copy(from.stored, &(to->stored));
75 const StoredTensorValue& from, StoredTensorValue* to,
78 return copy(from.stored, &(to->stored));
81 const StoredTensorValue& from, StoredTensorValue* to,
84 return copy(from.stored, &(to->stored));
167 StoredTensorValue from; local
168 from.stored = Tensor(DT_INT64, TensorShape({}));
169 from.stored.scalar<int64>()() = 0xdeadbeef;
171 data.set_type_name(from.TypeName())
201 StoredTensorValue from; local
244 StoredTensorValue from; local
    [all...]
  /external/toybox/scripts/
config2help.c 94 // Sets *from to where dash lines removed from (in case they weren't).
97 // If no prefix, *help NULL. If no postfix, *from == *help
98 // if no dashlines returned *from == *help.
100 char **grab_dashlines(struct double_list **help, struct double_list **from,
109 *from = *help;
113 s = skip_spaces((*from)->data);
119 *from = (*from)->next;
120 if (*from == *help) return 0
358 char *from = this+2, *to = that+2; local
    [all...]
  /external/toybox/toys/pending/
stty.c 18 -a Show all current settings (default differences from "sane").
120 char *from; member in struct:synonym
284 // POSIX has no opinion about what "sane" means. From "man stty".
285 // "cs8" is missing from the man page, but needed to get identical results.
388 if (!strcmp(synonyms[j].from, arg)) {
411 // special characters and any flags that differ from the "sane" settings.
  /external/toybox/toys/posix/
ls.c 8 * Deviations from posix:
75 // Callback from crunch_str to represent unprintable chars
87 char *to = buf, *from = buf+24; local
90 memcpy(from, to, 8);
93 if (strchr(TT.escmore, from[i])) *to++ = from[i];
94 else if (-1 != (j = stridx("\\\a\b\033\f\n\r\t\v", from[i])))
96 else to += sprintf(to, "%03o", from[i]);
186 // callback from dirtree_recurse() determining how to handle this entry.
212 // Work around kernel bug that won't let us read this "metadata" from
    [all...]
  /external/v8/src/compiler/
control-equivalence.h 32 // numbers in the algorithm from figure 4 have been added [line:x].
43 // Run the main algorithm starting from the {exit} control node. This causes
65 Node* from; // Node that this bracket originates from. member in struct:v8::internal::compiler::final::Bracket
105 void VisitBackedge(Node* from, Node* to, DFSDirection direction);
159 void DFSPush(DFSStack& stack, Node* node, Node* from, DFSDirection dir);
node.cc 25 // Extract the inputs from the old use and input pointers and copy them
287 Node* from = use->from(); local
288 if (from == owner1) {
290 } else if (from == owner2) {
301 Node* from = use->from(); local
302 if (from->opcode() != IrOpcode::kLoad &&
303 // If {from} is store, make sure it does not use {this} as value
304 (from->opcode() != IrOpcode::kStore || from->InputAt(2) == this) &
    [all...]
  /external/v8/src/
execution.cc 323 // Remove scope from chain.
353 // Clear the interrupt flag from the chain of PostponeInterruptsScopes.
360 // Clear the interrupt flag from the active interrupt flags.
383 // current thread_local_ from StackGuard)-- but is this
392 char* StackGuard::RestoreStackGuard(char* from) {
394 MemCopy(reinterpret_cast<char*>(&thread_local_), from, sizeof(ThreadLocal)); local
396 return from + sizeof(ThreadLocal);
v8threads.cc 133 char* from = state->data(); local
134 from = isolate_->handle_scope_implementer()->RestoreThread(from);
135 from = isolate_->RestoreThread(from);
136 from = Relocatable::RestoreState(isolate_, from);
137 from = isolate_->debug()->RestoreDebug(from);
138 from = isolate_->stack_guard()->RestoreStackGuard(from)
    [all...]
  /external/v8/src/profiler/
cpu-profiler.h 66 Address from; member in class:v8::internal::CodeMoveEventRecord
105 // The parameterless constructor is used when we dequeue data from
146 void AddDeoptStack(Isolate* isolate, Address from, int fp_to_sp_delta);
163 // Called from events processing thread (Run() method.)
  /external/v8/src/regexp/
interpreter-irregexp.cc 28 static bool BackRefMatchesNoCase(Isolate* isolate, int from, int current,
32 reinterpret_cast<Address>(const_cast<uc16*>(&subject.at(from)));
41 static bool BackRefMatchesNoCase(Isolate* isolate, int from, int current,
46 unsigned int old_char = subject[from++];
417 uint32_t from = Load16Aligned(pc + 4); local
419 if (from <= current_char && current_char <= to) {
427 uint32_t from = Load16Aligned(pc + 4); local
429 if (from > current_char || current_char > to) {
495 int from = registers[insn >> BYTECODE_SHIFT]; local
496 int len = registers[(insn >> BYTECODE_SHIFT) + 1] - from;
509 int from = registers[insn >> BYTECODE_SHIFT]; local
526 int from = registers[insn >> BYTECODE_SHIFT]; local
544 int from = registers[insn >> BYTECODE_SHIFT]; local
    [all...]
  /external/webrtc/webrtc/test/channel_transport/
udp_socket2_manager_win.h 46 SocketAddress from; member in struct:webrtc::test::PerIoContext
  /external/wpa_supplicant_8/src/radius/
radius_das.c 69 "Disconnect-Request from %s:%d", attr,
80 wpa_printf(MSG_INFO, "DAS: Invalid NAS-IP-Address from %s:%d",
92 wpa_printf(MSG_INFO, "DAS: Invalid NAS-IPv6-Address from %s:%d",
115 "'%s' from %s:%d", tmp, abuf, from_port);
149 wpa_printf(MSG_INFO, "DAS: NAS mismatch from %s:%d",
154 wpa_printf(MSG_INFO, "DAS: Session not found for request from "
160 "DAS: Multiple sessions match for request from %s:%d",
197 } from; local
209 fromlen = sizeof(from);
211 (struct sockaddr *) &from.ss, &fromlen)
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
ctrl_iface_udp.c 29 * ctrl_iface_udp.c and should not be touched directly from other files.
79 struct sockaddr_in6 *from,
81 struct sockaddr_in *from,
93 os_memcpy(&dst->addr, from, sizeof(*from));
100 inet_ntop(AF_INET6, &from->sin6_addr, addr, sizeof(*from)),
101 ntohs(from->sin6_port));
104 inet_ntoa(from->sin_addr), ntohs(from->sin_port))
225 struct sockaddr_in6 from; local
230 struct sockaddr_in from; local
606 struct sockaddr_in6 from; local
608 struct sockaddr_in from; local
    [all...]
  /external/zlib/src/contrib/blast/
blast.c 27 * 1.3 24 Aug 2013 - Return unused input from blast()
62 * Return need bits from the input stream. This always leaves less than
67 * - Bits are stored in bytes from the least significant bit to the most
68 * significant bit. Therefore bits are dropped from the bottom of the bit
109 * Decode a code from the stream s using huffman table h. Return the symbol or
118 * bits are pulled from the compressed data one at a time and used to
119 * build the code value reversed from what is in the stream in order to
136 int bitbuf; /* bits from stream */
223 left -= h->count[len]; /* deduct count from possible codes */
269 * copy is from distance bytes back in the output stream, copying for lengt
290 unsigned char *from, *to; \/* copy pointers *\/ local
    [all...]
  /external/zlib/src/contrib/infback9/
infback9.c 124 then return a Z_BUF_ERROR from inflateBack(). */
137 /* Get a byte of input into the bit accumulator, or return from inflateBack()
148 not enough available input to do that, then return from inflateBack() with
160 /* Remove n bits from the bit accumulator */
175 if it's full. If the write fails, return from inflateBack() with a
237 unsigned long offset; /* distance back to copy string from */
239 unsigned char FAR *from; /* where to copy match bytes from */ local
326 /* copy stored block from input to output */
560 /* copy match from window to output *
    [all...]
  /external/zlib/src/examples/
gzappend.c 8 arising from the use of this software.
20 3. This notice may not be removed or altered from any source distribution.
47 gzappend takes a gzip file and appends to it, compressing files from the
48 command line or data from stdin. The gzip file is written to directly, to
53 zlib 1.2.x's inflate() function. This option returns from inflate() at each
71 data from the gzip file to initialize the dictionary. If the total
74 last bits from the original deflate stream. From here on, the data to
127 unsigned char *start, *last, *to, *from; local
156 start = from = list + cycles; /* start index is arbitrary *
    [all...]
  /external/zlib/src/
inflate.c 18 * - Change inffast.c entry and loop from avail_in >= 7 to >= 6
19 * - Remove unnecessary second byte pull from length extra in inffast.c
43 * - Move a comment on output buffer sizes from inffast.c to inflate.c
65 * - Changed loops from while (1) or do {} while (1) to for (;;), again to
168 /* extract wrap request from windowBits parameter */
270 fixed code decoding. Normally this returns fixed tables from inffixed.h.
392 upon return from inflate(), and since all distances after the first 32K of
486 /* Restore state from registers in inflate() */
504 /* Get a byte of input into the bit accumulator, or return from inflate()
515 not enough available input to do that, then return from inflate(). *
634 unsigned char FAR *from; \/* where to copy match bytes from *\/ local
    [all...]
  /frameworks/av/packages/MediaComponents/src/com/android/media/
SessionToken2Impl.java 79 // Infer id and type from package name and service name
243 SessionToken2Impl other = from((SessionToken2) obj);
257 static SessionToken2Impl from(SessionToken2 token) { method in class:SessionToken2Impl
  /frameworks/base/core/java/android/net/
NetworkPolicyManager.java 134 public static NetworkPolicyManager from(Context context) { method in class:NetworkPolicyManager
  /frameworks/base/core/java/android/transition/
TransitionInflater.java 40 * This class inflates scenes and transitions from resource files.
61 * Obtains the TransitionInflater from the given context.
63 public static TransitionInflater from(Context context) { method in class:TransitionInflater
68 * Loads a {@link Transition} object from a resource
96 * Loads a {@link TransitionManager} object from a resource
  /frameworks/base/core/java/android/view/textclassifier/
TextSelection.java 70 @IntRange(from = 0)
76 * Returns the entity at the specified index. Entities are ordered from high confidence
89 * Returns the confidence score for the specified entity. The value ranges from
93 @FloatRange(from = 0.0, to = 1.0)
130 public Builder(@IntRange(from = 0) int startIndex, @IntRange(from = 0) int endIndex) {
140 * @param confidenceScore a value from 0 (low confidence) to 1 (high confidence).
147 @FloatRange(from = 0.0, to = 1.0) float confidenceScore) {
208 @IntRange(from = 0)
216 @IntRange(from = 0
403 public static Options from(TextClassificationSessionId sessionId, Request request) { method in class:TextSelection.Options
    [all...]
  /frameworks/base/core/java/android/widget/
SimpleAdapter.java 37 * defines the views used to display the row, and a mapping from keys in the Map to specific
78 * "from"
81 * @param from A list of column names that will be added to the Map associated with each
83 * @param to The views that should display column in the "from" parameter. These should all be
85 * in the from parameter.
88 @LayoutRes int resource, String[] from, @IdRes int[] to) {
91 mFrom = from;
156 * {@code null} to use the theme from the adapter's context
167 mDropDownInflater = LayoutInflater.from(context);
189 final String[] from = mFrom local
    [all...]
  /frameworks/base/lowpan/java/android/net/lowpan/
LowpanManager.java 58 * from this Map without leaking memory.
69 public static LowpanManager from(Context context) { method in class:LowpanManager
146 /* Make sure we remove the object from the

Completed in 369 milliseconds

<<11121314151617181920>>