HomeSort by relevance Sort by last modified time
    Searched defs:In (Results 1 - 21 of 21) sorted by null

  /external/llvm/utils/FileUpdate/
FileUpdate.cpp 12 // unnecessary modifications in a build system.
47 OwningPtr<MemoryBuffer> In;
48 if (error_code ec = MemoryBuffer::getFileOrSTDIN(InputFilename.c_str(), In)) {
59 if (Out && In->getBufferSize() == Out->getBufferSize() &&
60 memcmp(In->getBufferStart(), Out->getBufferStart(),
81 OutStream.os().write(In->getBufferStart(), In->getBufferSize());
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
omxVCM4P10_InvTransformResidualAndAdd.c 39 * bAC - Indicate whether there is AC coefficients in the coefficients
69 OMX_S16 In[16], Out[16];
87 In[i] = pDequantCoeff [i];
93 In[0] = pDequantCoeff [0];
97 In[i] = 0;
102 armVCM4P10_TransformResidual4x4 (Out, In);
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
token.ml 19 | For | In
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
token.ml 19 | For | In
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
GlobalSync.java 5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
40 int [] In = new int [1];
41 In[0] = v;
42 AIn.copyFrom(In);
  /external/webkit/Source/WebKit2/Platform/CoreIPC/
Arguments.h 4 * Redistribution and use in source and binary forms, with or without
9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
20 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
22 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
48 inline Arguments0 In()
83 template<typename T1> Arguments1<const T1&> In(const T1& t1)
124 template<typename T1, typename T2> Arguments2<const T1&, const T2&> In(const T1& t1, const T2& t2)
166 template<typename T1, typename T2, typename T3> Arguments3<const T1&, const T2&, const T3&> In(const T1& t1, const T2& t2, const T3 &t3
    [all...]
  /external/llvm/lib/TableGen/
TGLexer.h 46 Bit, Bits, Class, Code, Dag, Def, Foreach, Defm, Field, In, Int, Let, List,
  /external/protobuf/python/
mox.py 6 # you may not use this file except in compliance with the License.
11 # Unless required by applicable law or agreed to in writing, software
22 Mox works in the record-replay-verify paradigm. When you first create
23 a mock object, it is in record mode. You then programmatically set
25 called on it, with what parameters, what they should return, and in
28 Once you have set up the expected mock behavior, you put it in replay
51 # Put mocks in replay mode
98 for i, m in enumerate(self._expected_methods)])
116 # been in.
192 for mock_obj in self._mock_objects
    [all...]
  /frameworks/compile/libbcc/lib/Renderscript/
RSForEachExpand.cpp 5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
73 // For pre-ICS bitcode, we may not have signature information. In that
160 * invokes <NAME>() in a loop with the appropriate parameters.
180 /* Defined in frameworks/base/libs/rs/rs_hal.h:
183 * const void *in;
196 StructTys.push_back(VoidPtrTy); // const void *in
400 /* Defined in frameworks/base/libs/rs/rs_hal.h:
403 * const void *in;
416 StructTys.push_back(VoidPtrTy); // const void *in
    [all...]
  /external/clang/include/clang/AST/
Comment.h 32 /// Describes the syntax that was used in a documentation command.
109 /// spelling in comment (plain <br> would not set this flag).
134 /// Describes the syntax that was used in a documentation command.
148 /// True if direction was specified explicitly in the comment.
300 /// semantics in Doxygen.
698 /// Parameter index in the function declaration.
711 ParamCommandCommentBits.Direction = In;
720 In,
772 /// If this template parameter name was resolved (found in template parameter
773 /// list), then this stores a list of position indexes in all templat
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCasts.cpp 267 /// results in any code being generated and is interesting to optimize out. If
329 /// can be computed by computing V in the smaller type. If V is an instruction,
336 // We can always evaluate constants in another type.
352 // require duplicating the instruction in general, which isn't profitable.
384 // constant amount, we can always perform a SHL in a smaller type.
393 // lshr iff we know that the bits we would otherwise be shifting in are
455 // If this cast is a truncate, evaluting in a different type always
488 // amount is smaller than ASize, it is always safe to do the shift in A's
509 /// in order to eliminate the icmp.
524 Value *In = ICI->getOperand(0)
    [all...]
  /external/wpa_supplicant_8/src/eapol_auth/
eapol_auth_sm_i.h 20 typedef enum { Both = 0, In = 1 } ControlledDirection;
143 /* Other variables - not defined in IEEE 802.1X */
170 Boolean initializing; /* in process of initializing state machines */
175 void *sta; /* station context pointer to use in callbacks */
  /external/llvm/lib/CodeGen/SelectionDAG/
TargetLowering.cpp 45 /// Check whether a given call node is in tail position within its function. If
200 /// getJumpTableEncoding - Return the entry encoding for a jump table in the
204 // In non-pic modes, just use the address of a block.
208 // In PIC mode, if the target supports a GPRel32 directive, use it.
240 // Assume that everything is safe in static mode.
244 // In dynamic-no-pic mode, assume that known defined values are safe.
261 /// are any bits set in the constant that are not demanded. If so, shrink the
345 /// return true, returning the original and new nodes in Old and New. Otherwise,
348 /// only be accurate for those bits in the DemandedMask.
403 // If any of the set bits in the RHS are known zero on the LHS, shrin
    [all...]
DAGCombiner.cpp 15 // in the LLVM IR and exposed by the various codegen lowering phases.
54 cl::desc("Include global information in alias analysis"));
82 // also in the contents set. All operations are O(log N).
321 /// Run - runs the dag combiner on all nodes in the work list
    [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonHardwareLoops.cpp 25 // - No function calls in loops.
92 /// Kinds of comparisons in the compare instructions.
133 /// \brief Analyze the statements in a loop to determine if the loop
193 /// The desired flow is: phi ---> bump -+-> comparison-in-latch.
202 /// +-> comparison-in-latch (against upper_bound-bump),
209 /// couldn't be identified, or if the value in the latch's comparison
331 // value that will be added to it in each loop iteration.
423 /// \brief Analyze the statements in a loop to determine if the loop has
427 /// This function iterates over the phi nodes in the loop to check for
428 /// induction variable patterns that are used in the calculation fo
    [all...]
  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp 106 /// isCompared - True if the global's address is used in a comparison.
127 /// track the value stored to it in StoredOnceValue below. This is only
188 /// AnalyzeGlobal - Look at all uses of the global and fill in the GlobalStatus
201 // know to expect it in various places. Just reject early.
386 // pointers are forgotten, causing an accumulating growth in memory
397 // chain of computation and the store to the global in Dead[n].second.
589 // Check to see if this ConstantExpr GEP is SRA'able. In particular, we
613 // sub-indices are in-range constants. In particular, consider:
660 /// behavior of the program in a more fine-grained way. We have determined tha
    [all...]
  /external/clang/lib/Sema/
TreeTransform.h 10 // AST and rebuilds it, possibly transforming some nodes in the process.
117 /// rather than in the subclass (e.g., lambda closure types).
147 /// information was not available elsewhere in the AST.
155 /// information was not available elsewhere in the AST.
169 /// used for reporting diagnostics in types.
236 /// \param NumExpansions The number of separate arguments that will be in
242 /// set this value in other cases.
300 /// type, collecting location information in the given builder
345 /// \param NumInputs The number of expressions in \c Inputs.
388 /// TransformDefinition. However, in some cases (e.g., lambda expressions)
    [all...]
  /external/llvm/lib/Target/X86/
X86ISelLowering.cpp 63 /// simple subregister reference. Idx is an index in the 128 bits we
102 /// simple superregister reference. Idx is an index in the 128 bits
293 // In 32-bit mode these are custom lowered. In 64-bit mode F32 and F64
326 // the optimal thing for SSE vs. the default expansion in the legalizer.
359 // instructions for this in x86. Using the two-result multiply instructions
515 // Locked instructions, in turn, have implicit fence semantics (all memory
669 // f32 and f64 in x87.
    [all...]
  /prebuilts/devtools/tools/lib/
jython-2.5.3.jar 
  /prebuilts/misc/common/jython/
jython.jar 
  /prebuilts/tools/common/m2/repository/org/python/jython/2.5.3/
jython-2.5.3.jar 

Completed in 1018 milliseconds