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

1 2 3 4 5 6 7 8 91011>>

  /external/compiler-rt/test/profile/Inputs/
extern_template1.cpp 5 Test<int> TO;
7 TO.doIt(20);
8 return TO.M;
extern_template2.cpp 5 extern Test<int> TO;
7 TO.doIt(5);
8 return TO.M;
extern_template.cpp 6 extern Test<int> TO;
  /prebuilts/go/darwin-x86/src/runtime/
memclr_arm.s 8 // Permission is hereby granted, free of charge, to any person obtaining a copy
9 // of this software and associated documentation files (the "Software"), to deal
11 // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12 // copies of the Software, and to permit persons to whom the Software is
13 // furnished to do so, subject to the following conditions:
19 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
28 #define TO R8
34 MOVW ptr+0(FP), TO
    [all...]
  /prebuilts/go/linux-x86/src/runtime/
memclr_arm.s 8 // Permission is hereby granted, free of charge, to any person obtaining a copy
9 // of this software and associated documentation files (the "Software"), to deal
11 // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12 // copies of the Software, and to permit persons to whom the Software is
13 // furnished to do so, subject to the following conditions:
19 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
28 #define TO R8
34 MOVW ptr+0(FP), TO
    [all...]
  /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...]
  /frameworks/av/media/libaudioprocessing/
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
59 template<typename TC, typename TI, typename TO>
60 AudioResamplerDyn<TC, TI, TO>::InBuffer::InBuffer()
65 template<typename TC, typename TI, typename TO>
66 AudioResamplerDyn<TC, TI, TO>::InBuffer::~InBuffer()
71 template<typename TC, typename TI, typename TO>
72 void AudioResamplerDyn<TC, TI, TO>::InBuffer::init()
81 // resizes the state buffer to accommodate the appropriate filter length
82 template<typename TC, typename TI, typename TO>
83 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.
56 * A generic version is NOT defined to catch any mistake of using it.
59 template <typename TO, typename TI, typename TV>
60 TO MixMul(TI value, TV volume)
    [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
116 size_t resample(TO* out, size_t outFrameCount, AudioBufferProvider* provider);
118 // define a pointer to member function type for resample
119 typedef size_t (AudioResamplerDyn<TC, TI, TO>::*resample_ABP_t)(TO* out,
125 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/mesa3d/src/mesa/math/
m_matrix.h 6 * Permission is hereby granted, free of charge, to any person obtaining a
8 * to deal in the Software without restriction, including without limitation
9 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 * and/or sell copies of the Software, and to permit persons to whom the
11 * Software is furnished to do so, subject to the following conditions:
17 * 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);
  /packages/apps/Messaging/src/android/support/v7/mms/pdu/
DeliveryInd.java 11 * Unless required by applicable law or agreed to in writing, software
26 * Since the Pdu corresponding to this class is constructed
103 * Get To value.
108 return mPduHeaders.getEncodedStringValues(PduHeaders.TO);
112 * set To value.
118 mPduHeaders.setEncodedStringValues(value, PduHeaders.TO);
ReadOrigInd.java 11 * Unless required by applicable law or agreed to in writing, software
23 * Since the Pdu corresponding to this class is constructed
121 * Get To value.
126 return mPduHeaders.getEncodedStringValues(PduHeaders.TO);
130 * Set To value.
136 mPduHeaders.setEncodedStringValues(value, PduHeaders.TO);
  /packages/apps/Messaging/src/com/android/messaging/mmslib/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);
  /external/curl/docs/examples/
smtp-mail.c 14 * You may opt to use, copy, modify, merge, publish, distribute and/or sell
15 * copies of the Software, and permit persons to whom the Software is
16 * furnished to do so, under the terms of the COPYING file.
24 * SMTP example showing how to send e-mails
32 /* This is a simple example showing how to send mail using libcurl's SMTP
40 #define TO "<addressee@example.net>"
45 "To: " TO "\r\n",
51 "\r\n", /* empty line to divide headers from body, see RFC5322 */
102 * to the address in the reverse-path which triggered them. Otherwise
    [all...]
smtp-tls.c 14 * You may opt to use, copy, modify, merge, publish, distribute and/or sell
15 * copies of the Software, and permit persons to whom the Software is
16 * furnished to do so, under the terms of the COPYING file.
32 /* This is a simple example showing how to send mail using libcurl's SMTP
33 * capabilities. It builds on the smtp-mail.c example to add authentication
34 * and, more importantly, transport security to protect the authentication
41 #define TO "<addressee@example.net>"
46 "To: " TO "\r\n",
52 "\r\n", /* empty line to divide headers from body, see RFC5322 *
    [all...]
smtp-ssl.c 14 * You may opt to use, copy, modify, merge, publish, distribute and/or sell
15 * copies of the Software, and permit persons to whom the Software is
16 * furnished to do so, under the terms of the COPYING file.
32 /* This is a simple example showing how to send mail using libcurl's SMTP
33 * capabilities. It builds on the smtp-mail.c example to add authentication
34 * and, more importantly, transport security to protect the authentication
41 #define TO "<addressee@example.net>"
46 "To: " TO "\r\n",
52 "\r\n", /* empty line to divide headers from body, see RFC5322 *
    [all...]
imap-append.c 14 * You may opt to use, copy, modify, merge, publish, distribute and/or sell
15 * copies of the Software, and permit persons to whom the Software is
16 * furnished to do so, under the terms of the COPYING file.
24 * IMAP example showing how to send e-mails
32 /* This is a simple example showing how to send mail using libcurl's IMAP
39 #define TO "<addressee@example.net>"
44 "To: " TO "\r\n",
50 "\r\n", /* empty line to divide headers from body, see RFC5322 */
101 * EXAMINE command to obtain the UID of the next message to create and
    [all...]
  /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...]
  /external/curl/docs/cmdline-opts/
local-port.d 6 Set a preferred single number or range (FROM-TO) of local port numbers to use
8 that will be busy at times so setting this range to something too narrow might
  /external/curl/tests/libtest/
lib1520.c 14 * You may opt to use, copy, modify, merge, publish, distribute and/or sell
15 * copies of the Software, and permit persons to whom the Software is
16 * furnished to do so, under the terms of the COPYING file.
27 * This is the list of basic details you need to tweak to get things right.
29 #define TO "<recipient@example.com>"
34 "To: another\r\n",
90 rcpt_list = curl_slist_append(rcpt_list, TO);
  /external/vboot_reference/scripts/image_signing/
resign_firmwarefd.sh 15 # Which futility to run?
57 echo UNABLE TO EXEC FUTILITY 1>&2

Completed in 603 milliseconds

1 2 3 4 5 6 7 8 91011>>