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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/av/media/libeffects/lvm/lib/Common/src/
Abs_32.c 26 * Input : Signed 32-bit integer
33 LVM_INT32 Abs_32(LVM_INT32 input)
35 if(input < 0)
37 if (input == (LVM_INT32)(0x80000000U))
40 input=(LVM_INT32) 0x7fffffff;
44 /* Negative input, so invert */
45 input = (LVM_INT32)(-input);
48 return input;
51 LVM_FLOAT Abs_Float(LVM_FLOAT input)
    [all...]
  /external/mesa3d/prebuilt-intermediates/util/
vk_enum_to_str.c 32 vk_AttachmentLoadOp_to_str(VkAttachmentLoadOp input)
34 switch(input) {
47 vk_AttachmentStoreOp_to_str(VkAttachmentStoreOp input)
49 switch(input) {
60 vk_BlendFactor_to_str(VkBlendFactor input)
62 switch(input) {
107 vk_BlendOp_to_str(VkBlendOp input)
109 switch(input) {
218 vk_BlendOverlapEXT_to_str(VkBlendOverlapEXT input)
220 switch(input) {
    [all...]
vk_enum_to_str.h 138 const char * vk_AttachmentLoadOp_to_str(VkAttachmentLoadOp input);
139 const char * vk_AttachmentStoreOp_to_str(VkAttachmentStoreOp input);
140 const char * vk_BlendFactor_to_str(VkBlendFactor input);
141 const char * vk_BlendOp_to_str(VkBlendOp input);
142 const char * vk_BlendOverlapEXT_to_str(VkBlendOverlapEXT input);
143 const char * vk_BorderColor_to_str(VkBorderColor input);
144 const char * vk_ChromaLocationKHR_to_str(VkChromaLocationKHR input);
145 const char * vk_ColorSpaceKHR_to_str(VkColorSpaceKHR input);
146 const char * vk_CommandBufferLevel_to_str(VkCommandBufferLevel input);
147 const char * vk_CompareOp_to_str(VkCompareOp input);
    [all...]
  /external/strace/tests/
gen_pure_executables.sh 31 Usage: $0 [<input> [<output>]]
33 Generate pure_executables.am from <input> list.
34 Deduce output file from <input> unless an <output> is specified.
39 input="${0%/*}/pure_executables.list"
40 [ $# -eq 0 ] || { input="$1"; shift; }
41 output="$(dirname "$input")/pure_executables.am"
47 echo "# Generated by $0 from $input; do not edit."
49 sed -n 's/^[^#].*/ & \\/p' < "$input"
  /external/strace/tests-m32/
gen_pure_executables.sh 31 Usage: $0 [<input> [<output>]]
33 Generate pure_executables.am from <input> list.
34 Deduce output file from <input> unless an <output> is specified.
39 input="${0%/*}/pure_executables.list"
40 [ $# -eq 0 ] || { input="$1"; shift; }
41 output="$(dirname "$input")/pure_executables.am"
47 echo "# Generated by $0 from $input; do not edit."
49 sed -n 's/^[^#].*/ & \\/p' < "$input"
  /external/strace/tests-mx32/
gen_pure_executables.sh 31 Usage: $0 [<input> [<output>]]
33 Generate pure_executables.am from <input> list.
34 Deduce output file from <input> unless an <output> is specified.
39 input="${0%/*}/pure_executables.list"
40 [ $# -eq 0 ] || { input="$1"; shift; }
41 output="$(dirname "$input")/pure_executables.am"
47 echo "# Generated by $0 from $input; do not edit."
49 sed -n 's/^[^#].*/ & \\/p' < "$input"
  /external/tensorflow/tensorflow/core/kernels/
training_op_helpers.cc 23 void MaybeForwardRefInputToRefOutput(OpKernelContext* ctx, int input,
25 if (ctx->input_dtype(input) != DT_RESOURCE) {
26 ctx->forward_ref_input_to_ref_output(input, output);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
VersionTuple.cpp 39 static bool parseInt(StringRef &input, unsigned &value) {
41 if (input.empty())
44 char next = input[0];
45 input = input.substr(1);
50 while (!input.empty()) {
51 next = input[0];
54 input = input.substr(1);
61 bool VersionTuple::tryParse(StringRef input) {
    [all...]
  /external/curl/lib/
dotdot.h 24 char *Curl_dedotdotify(const char *input);
  /external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
swap_bytes.c 26 const uint16_t* input, /* (i) the sequence to swap */
32 *output++ = (*input >> 8)|(*input << 8);
33 input++;
  /external/clang/test/Sema/
format-strings-enum.c 19 void test(TestEnum input) {
20 printf("%d", input); // no-warning
23 printf("%lld", input); // expected-warning-re{{format specifies type 'long long' but the argument has underlying type '{{(unsigned)?}} int'}}
30 void testLong(LongEnum input) {
31 printf("%u", input); // expected-warning{{format specifies type 'unsigned int' but the argument has underlying type}}
34 printf("%lu", input);
format-strings-enum-fixed-type.cpp 18 void test(TestEnum input) {
19 printf("%hhd", input); // expected-warning{{format specifies type 'char' but the argument has underlying type 'short'}}
22 printf("%hd", input); // no-warning
26 printf("%d", input); // no-warning
29 printf("%lld", input); // expected-warning{{format specifies type 'long long' but the argument has underlying type 'short'}}
36 void testLong(LongEnum input) {
37 printf("%u", input); // expected-warning{{format specifies type 'unsigned int' but the argument has underlying type 'unsigned long'}}
40 printf("%lu", input);
48 void testUnderlyingTypedef(ShortEnum input) {
49 printf("%hhd", input); // expected-warning{{format specifies type 'char' but the argument has underlying type 'short_t' (…)
    [all...]
  /external/libchrome/mojo/public/cpp/bindings/
array_traits_span.h 21 static bool IsNull(const base::span<T>& input) { return false; }
23 static size_t GetSize(const base::span<T>& input) { return input.size(); }
25 static T* GetData(base::span<T>& input) { return input.data(); }
27 static const T* GetData(const base::span<T>& input) { return input.data(); }
29 static T& GetAt(base::span<T>& input, size_t index) {
30 return input.data()[index];
33 static const T& GetAt(const base::span<T>& input, size_t index)
    [all...]
  /art/tools/dmtracedump/
dmtracedump.pl 8 $input = $_;
9 $input =~ s/\.data$//;
11 $output = "$input.html";
13 print("dmtracedump -h -p $input > $output\n");
14 system("dmtracedump -h -p '$input' > '$output'");
  /external/skia/src/gpu/effects/
GrPremulInputFragmentProcessor.fp 18 SkPMColor4f constantOutputForConstantInput(const SkPMColor4f& input) const override {
19 return SkColor4f { input.fR, input.fG, input.fB, input.fA }.premul();
  /external/skqp/src/gpu/effects/
GrPremulInputFragmentProcessor.fp 18 SkPMColor4f constantOutputForConstantInput(const SkPMColor4f& input) const override {
19 return SkColor4f { input.fR, input.fG, input.fB, input.fA }.premul();
  /external/antlr/runtime/Java/src/main/java/org/antlr/runtime/
Parser.java 34 public TokenStream input; field in class:Parser
36 public Parser(TokenStream input) {
38 setTokenStream(input);
41 public Parser(TokenStream input, RecognizerSharedState state) {
43 this.input = input;
49 if ( input!=null ) {
50 input.seek(0); // rewind the input
55 protected Object getCurrentInputSymbol(IntStream input) {
    [all...]
  /external/brotli/c/enc/
utf8_util.c 18 int* symbol, const uint8_t* input, size_t size) {
20 if ((input[0] & 0x80) == 0) {
21 *symbol = input[0];
28 (input[0] & 0xE0) == 0xC0 &&
29 (input[1] & 0xC0) == 0x80) {
30 *symbol = (((input[0] & 0x1F) << 6) |
31 (input[1] & 0x3F));
38 (input[0] & 0xF0) == 0xE0 &&
39 (input[1] & 0xC0) == 0x80 &&
40 (input[2] & 0xC0) == 0x80)
    [all...]
  /external/antlr/runtime/C/src/
antlr3filestream.c 3 * is a filesystem based input set and all the characters in the filestream
7 * sets can be supported from input files. The ANTLR3 C runtime expects
49 static void setupInputStream (pANTLR3_INPUT_STREAM input);
56 pANTLR3_INPUT_STREAM input; local
63 input = antlr3CreateFileStream(fileName);
64 if (input == NULL)
72 input->encoding = encoding;
77 setupInputStream(input);
81 input->istream->streamName = input->strFactory->newStr8(input->strFactory, fileName)
91 pANTLR3_INPUT_STREAM input; local
312 pANTLR3_INPUT_STREAM input; local
446 pANTLR3_INPUT_STREAM input; local
    [all...]
  /external/clang/lib/Basic/
VersionTuple.cpp 40 static bool parseInt(StringRef &input, unsigned &value) {
42 if (input.empty()) return true;
44 char next = input[0];
45 input = input.substr(1);
49 while (!input.empty()) {
50 next = input[0];
52 input = input.substr(1);
59 bool VersionTuple::tryParse(StringRef input) {
    [all...]
  /external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
ANTLRInputStream.cs 45 public ANTLRInputStream(Stream input)
46 : this(input, null) {
49 public ANTLRInputStream(Stream input, int size)
50 : this(input, size, null) {
53 public ANTLRInputStream(Stream input, Encoding encoding)
54 : this(input, InitialBufferSize, encoding) {
57 public ANTLRInputStream(Stream input, int size, Encoding encoding)
58 : this(input, size, ReadBufferSize, encoding) {
61 public ANTLRInputStream(Stream input, int size, int readBufferSize, Encoding encoding)
62 : base(GetStreamReader(input, encoding), size, readBufferSize)
    [all...]
  /external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime/
ANTLRInputStream.cs 47 public ANTLRInputStream( Stream input )
48 : this( input, null )
52 public ANTLRInputStream( Stream input, int size )
53 : this( input, size, null )
57 public ANTLRInputStream( Stream input, Encoding encoding )
58 : this( input, InitialBufferSize, encoding )
62 public ANTLRInputStream( Stream input, int size, Encoding encoding )
63 : this( input, size, ReadBufferSize, encoding )
67 public ANTLRInputStream( Stream input, int size, int readBufferSize, Encoding encoding )
68 : base(GetStreamReader(input, encoding), size, readBufferSize
    [all...]
  /external/antlr/gunit/src/main/java/org/antlr/gunit/swingui/model/
TestCase.java 32 private ITestCaseInput input; field in class:TestCase
45 return this.input;
52 public TestCase(ITestCaseInput input, ITestCaseOutput output) {
53 this.input = input;
59 return String.format("[%s]->[%s]", input.getScript(), output.getScript());
63 this.input = in;
70 public static String convertPreservedChars(String input) {
71 //return input.replace("\"", "\\\"");
72 return input;
    [all...]
  /external/apache-http/src/org/apache/http/conn/util/
InetAddressUtils.java 61 public static boolean isIPv4Address(final String input) {
62 return IPV4_PATTERN.matcher(input).matches();
65 public static boolean isIPv6StdAddress(final String input) {
66 return IPV6_STD_PATTERN.matcher(input).matches();
69 public static boolean isIPv6HexCompressedAddress(final String input) {
70 return IPV6_HEX_COMPRESSED_PATTERN.matcher(input).matches();
73 public static boolean isIPv6Address(final String input) {
74 return isIPv6StdAddress(input) || isIPv6HexCompressedAddress(input);
  /external/antlr/gunit/src/main/java/org/antlr/gunit/
gUnitTestInput.java 30 /** A class which contains input information of an individual testuite */
32 public String input; // a test input string for a testsuite field in class:gUnitTestInput
33 public boolean isFile; // if true, the input represents a filename
36 public gUnitTestInput(String input, boolean isFile, int line) {
37 this.input = input;
43 return JUnitCodeGen.escapeForJava(input);

Completed in 4561 milliseconds

1 2 3 4 5 6 7 8 91011>>