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

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
hard-reg-set.h 29 and it has enough bits to represent all the target machine's hard
34 the same format as a HARD_REG_SET. To help make sure this is true,
39 it used to be. */
56 /* HARD_REG_SET wrapped into a structure, to make it possible to
64 /* HARD_CONST is used to cast a constant to the appropriate type
70 to set, clear or test one bit in a hard reg set of type HARD_REG_SET.
74 is actually a pointer to a long.
82 These take two arguments TO and FROM; they read from FRO
    [all...]
  /external/eigen/blas/
drotmg.f 65 IF (.NOT.DD1.LT.ZERO) GO TO 10
67 GO TO 60
71 IF (.NOT.DP2.EQ.ZERO) GO TO 20
73 GO TO 260
80 IF (.NOT.DABS(DQ1).GT.DABS(DQ2)) GO TO 40
86 IF (.NOT.DU.LE.ZERO) GO TO 30
88 GO TO 60
95 GO TO 100
97 IF (.NOT.DQ2.LT.ZERO) GO TO 50
99 GO TO 6
    [all...]
srotmg.f 67 IF (.NOT.SD1.LT.ZERO) GO TO 10
69 GO TO 60
73 IF (.NOT.SP2.EQ.ZERO) GO TO 20
75 GO TO 260
82 IF (.NOT.ABS(SQ1).GT.ABS(SQ2)) GO TO 40
88 IF (.NOT.SU.LE.ZERO) GO TO 30
90 GO TO 60
97 GO TO 100
99 IF (.NOT.SQ2.LT.ZERO) GO TO 50
101 GO TO 6
    [all...]
drotm.f 12 * APPLY THE MODIFIED GIVENS TRANSFORMATION, H, TO THE 2 BY N MATRIX
17 * DX(LX+I*INCX), I = 0 TO N-1, WHERE LX = 1 IF INCX .GE. 0, ELSE
64 IF (N.LE.0 .OR. (DFLAG+TWO.EQ.ZERO)) GO TO 140
65 IF (.NOT. (INCX.EQ.INCY.AND.INCX.GT.0)) GO TO 70
78 GO TO 140
88 GO TO 140
100 GO TO 140
119 GO TO 140
131 GO TO 140
srotm.f 12 * APPLY THE MODIFIED GIVENS TRANSFORMATION, H, TO THE 2 BY N MATRIX
17 * SX(LX+I*INCX), I = 0 TO N-1, WHERE LX = 1 IF INCX .GE. 0, ELSE
65 IF (N.LE.0 .OR. (SFLAG+TWO.EQ.ZERO)) GO TO 140
66 IF (.NOT. (INCX.EQ.INCY.AND.INCX.GT.0)) GO TO 70
79 GO TO 140
89 GO TO 140
101 GO TO 140
120 GO TO 140
132 GO TO 140
  /frameworks/av/services/audioflinger/
AudioResamplerFirProcess.h 10 * Unless required by applicable law or agreed to in writing, software
57 /* variant for output type TO = int32_t output samples */
64 /* variant for output type TO = float output samples */
75 * Using a recursive template rather than an array of TO[] for the accumulator
79 template<int CHANNELS, typename TO>
80 class Accumulator : public Accumulator<CHANNELS-1, TO> // recursive
85 Accumulator<CHANNELS-1, TO>::clear();
90 Accumulator<CHANNELS-1, TO>::acc(coef, data);
92 inline void volume(TO*& out, TO gain)
    [all...]
AudioResamplerDyn.cpp 10 * Unless required by applicable law or agreed to in writing, software
58 template<typename TC, typename TI, typename TO>
59 AudioResamplerDyn<TC, TI, TO>::InBuffer::InBuffer()
64 template<typename TC, typename TI, typename TO>
65 AudioResamplerDyn<TC, TI, TO>::InBuffer::~InBuffer()
70 template<typename TC, typename TI, typename TO>
71 void AudioResamplerDyn<TC, TI, TO>::InBuffer::init()
80 // resizes the state buffer to accommodate the appropriate filter length
81 template<typename TC, typename TI, typename TO>
82 void AudioResamplerDyn<TC, TI, TO>::InBuffer::resize(int CHANNELS, int halfNumCoefs
    [all...]
AudioMixerOps.h 10 * Unless required by applicable law or agreed to in writing, software
23 * false otherwise. Identical to the STL std::is_same.
38 /* MixMul is a multiplication operator to scale an audio input signal
49 * Output type TO: int32_t (Q4.27) or int16_t (Q.15) or float [-1,1]
53 * For high precision audio, only the <TO, TI, TV> = <float, float, float>
54 * needs to be accelerated. This is perhaps the easiest form to do quickly as well.
57 template <typename TO, typename TI, typename TV>
58 inline TO MixMul(TI value, TV volume) {
61 // To avoid mistakes, this template is always specialized
    [all...]
AudioResamplerDyn.h 10 * Unless required by applicable law or agreed to in writing, software
35 * TO = output data type (one of int32_t or float)
41 template<typename TC, typename TI, typename TO>
69 int mShift; // right shift to get polyphase index
114 void resample(TO* out, size_t outFrameCount, AudioBufferProvider* provider);
116 // define a pointer to member function type for resample
117 typedef void (AudioResamplerDyn<TC, TI, TO>::*resample_ABP_t)(TO* out,
123 TO __attribute__ ((aligned (8))) mVolumeSimd[2]; // must be aligned or NEON may crash
  /cts/tests/tests/net/src/android/net/http/cts/
SslCertificate_DNameTest.java 10 * Unless required by applicable law or agreed to in writing, software
29 final String TO = "c=ccc,o=testOName,ou=testUName,cn=testCName";
34 SslCertificate ssl = new SslCertificate(TO, BY, DateFormat.getInstance().format(
41 assertEquals(TO, issuedTo.getDName());
  /external/chromium_org/third_party/mesa/src/src/mesa/math/
m_matrix.h 7 * Permission is hereby granted, free of charge, to any person obtaining a
9 * to deal in the Software without restriction, including without limitation
10 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
11 * and/or sell copies of the Software, and to permit persons to whom the
12 * Software is furnished to do so, subject to the following conditions:
18 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
44 * \name Symbolic names to some of the entries in the matrix
60 * We use these to select specific optimized vertex transformation routines
    [all...]
  /external/mesa3d/src/mesa/math/
m_matrix.h 7 * Permission is hereby granted, free of charge, to any person obtaining a
9 * to deal in the Software without restriction, including without limitation
10 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
11 * and/or sell copies of the Software, and to permit persons to whom the
12 * Software is furnished to do so, subject to the following conditions:
18 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
44 * \name Symbolic names to some of the entries in the matrix
60 * We use these to select specific optimized vertex transformation routines
    [all...]
  /frameworks/opt/telephony/src/java/com/google/android/mms/pdu/
DeliveryInd.java 11 * Unless required by applicable law or agreed to in writing, software
28 * Since the Pdu corresponding to this class is constructed
105 * Get To value.
110 return mPduHeaders.getEncodedStringValues(PduHeaders.TO);
114 * set To value.
120 mPduHeaders.setEncodedStringValues(value, PduHeaders.TO);
MultimediaMessagePdu.java 11 * Unless required by applicable law or agreed to in writing, software
96 * Get To value.
101 return mPduHeaders.getEncodedStringValues(PduHeaders.TO);
105 * Add a "To" value.
111 mPduHeaders.appendEncodedStringValue(value, PduHeaders.TO);
ReadOrigInd.java 11 * Unless required by applicable law or agreed to in writing, software
25 * Since the Pdu corresponding to this class is constructed
123 * Get To value.
128 return mPduHeaders.getEncodedStringValues(PduHeaders.TO);
132 * Set To value.
138 mPduHeaders.setEncodedStringValues(value, PduHeaders.TO);
ReadRecInd.java 11 * Unless required by applicable law or agreed to in writing, software
30 * @param to the to value
32 * NullPointerException if messageId or to is null.
38 EncodedStringValue[] to) throws InvalidHeaderValueException {
44 setTo(to);
95 * Get To value.
100 return mPduHeaders.getEncodedStringValues(PduHeaders.TO);
104 * Set To value.
110 mPduHeaders.setEncodedStringValues(value, PduHeaders.TO);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/
StdLibExtras.h 14 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
33 // Use this to declare and define a static local variable (static T;) so that
40 // Use this to declare and define a static local pointer to a ref-counted object so that
43 // as this macro does not lead to an extra memory allocation.
49 // Use this macro to declare and define a debug-only global variable that may have a
69 * The reinterpret_cast<Type1*>([pointer to Type2]) expressions - where
112 template<typename TO, typename FROM>
113 inline TO bitwise_cast(FROM from
118 TO to; member in union:WTF::__anon15324
    [all...]
  /external/clang/include/clang/CodeGen/
ModuleBuilder.h 41 /// It is the responsibility of the caller to call delete on
46 const TargetOptions &TO,
  /external/nist-sip/java/gov/nist/javax/sip/parser/
ToParser.java 6 * Pursuant to title 15 Untied States Code Section 105, works of NIST
7 * employees are not subject to copyright protection in the United States
8 * and are considered to be in the public domain. As a result, a formal
9 * license is not needed to use the software.
17 * not limited to the correctness, accuracy, reliability or usefulness of
20 * Permission to use this software is contingent upon your acceptance
33 * To Header parser.
45 * @param to String to set
47 public ToParser(String to) {
58 To to = new To(); local
    [all...]
  /frameworks/base/core/java/android/net/
MailTo.java 10 * Unless required by applicable law or agreed to in writing, software
35 // All the parsed content is added to the headers.
39 static private final String TO = "to";
46 * Test to see if the given string is a mailto URL
47 * @param url string to be tested
100 m.mHeaders.put(TO, address);
107 * Retrieve the To address line from the parsed mailto URL. This could be
109 * If no To line was specified, then null is return
113 return mHeaders.get(TO);
    [all...]
  /cts/tools/dasm/src/dasm/
sym.java 81 static final int TO = 32;
  /external/chromium_org/tools/win/
copy-installer.bat 14 REM to the Release build if one is not found. Similarly, the ninja output
17 REM (case matters), or "x64" on the command line in any order to influence
27 REM Get the path to the build tree's src directory.
45 ECHO No build found to copy.
50 SET TO=\%OUTPUT%\%BUILDTYPE%%ARCH%
52 REM Figure out what files to copy based on the component type (shared/static).
74 REM Keeping the old chrome.packed.7z around could cause the new setup.exe to
75 REM use it instead of the new chrome.7z, delete it to save developers from
78 IF EXIST "%TO%\%ARCHIVETODELETE%" (
80 del /Q "%TO%\%ARCHIVETODELETE%"
    [all...]
  /external/smack/src/org/jivesoftware/smackx/
MultipleRecipientInfo.java 14 * Unless required by applicable law or agreed to in writing, software
29 * in a received packet. Among the information we can find the list of TO and CC addresses.
48 return extension.getAddressesOfType(MultipleAddresses.TO);
62 * Returns the JID of a MUC room to which responses should be sent or <tt>null</tt> if
64 * can be sent to any or all recipients. Otherwise, the user should join the specified room
65 * and send the reply to the room.
67 * @return the JID of a MUC room to which responses should be sent or <tt>null</tt> if
78 * to send replies.
87 * Returns the address to which all replies are requested to be sent or <tt>null</tt> i
    [all...]
  /external/elfutils/0.153/src/
ylwrap 17 # along with this program; if not, write to the Free Software
20 # As a special exception to the GNU General Public License, if you
30 # * PROGRAM is program to run
31 # * ARGS are passed to PROG
57 # The program to run.
83 # and y_tab.h instead of y.tab.h. Test to see if this is the case.
117 # We don't want the resulting debug information to point at
118 # an absolute srcdir; it is better for it to just mention the
121 # We want to use the real output file name, not yy.lex.c for
124 # We want the include guards to be adjusted too
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/
To.java 6 * Pursuant to title 15 Untied States Code Section 105, works of NIST
7 * employees are not subject to copyright protection in the United States
8 * and are considered to be in the public domain. As a result, a formal
9 * license is not needed to use the software.
17 * not limited to the correctness, accuracy, reliability or usefulness of
20 * Permission to use this software is contingent upon your acceptance
39 * To SIP Header.
50 public final class To extends AddressParametersHeader implements
61 public To() {
62 super(TO,true)
    [all...]

Completed in 8169 milliseconds

1 2 3 4 5 6 7 8 91011>>