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

1 2 3 4

  /external/llvm/lib/ObjectYAML/
ObjectYAML.cpp 47 Input &In = (Input &)IO;
48 std::string Tag = In.getCurrentNode()->getRawTag();
  /external/swiftshader/third_party/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 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
54 * bAC - Indicate whether there is AC coefficients in the coefficients
84 OMX_S16 In[16], Out[16];
102 In[i] = pDequantCoeff [i];
108 In[0] = pDequantCoeff [0];
112 In[i] = 0;
117 armVCM4P10_TransformResidual4x4 (Out, In);
  /device/linaro/bootloader/OpenPlatformPkg/Chips/TexasInstruments/Omap35xx/PciEmulation/
PciRootBridgeIo.c 19 IN PCI_ROOT_BRIDGE *Private,
20 IN UINT64 Address
33 IN EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL_WIDTH Width,
34 IN UINTN Count,
35 IN BOOLEAN InStrideFlag,
36 IN PTR In,
37 IN BOOLEAN OutStrideFlag,
56 for (;Count > 0; Count--, In.buf += InStride, Out.buf += OutStride) {
57 *In.ui8 = *Out.ui8;
    [all...]
  /device/linaro/bootloader/edk2/ArmPlatformPkg/ArmJunoPkg/Drivers/ArmJunoDxe/
PciRootBridgeIo.c 19 IN PCI_ROOT_BRIDGE *Private,
20 IN UINT64 Address
33 IN EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL_WIDTH Width,
34 IN UINTN Count,
35 IN BOOLEAN InStrideFlag,
36 IN PTR In,
37 IN BOOLEAN OutStrideFlag,
55 for (;Count > 0; Count--, In.Buffer += InStride, Out.Buffer += OutStride) {
56 *In.Ui8 = *Out.Ui8;
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/SplitFile/
splitfile.c 58 " Break the FILE in two pieces FILE1 and FILE2 at the requested OFFSET.",
88 FILE *In;
104 In = fopen (argv[1], "rb");
105 if (In == NULL) {
130 CharC = (char) fgetc (In);
131 if (feof (In)) {
139 CharC = (char) fgetc (In);
140 if (feof (In)) {
147 fclose (In);
  /device/linaro/bootloader/edk2/Omap35xxPkg/PciEmulation/
PciRootBridgeIo.c 19 IN PCI_ROOT_BRIDGE *Private,
20 IN UINT64 Address
33 IN EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL_WIDTH Width,
34 IN UINTN Count,
35 IN BOOLEAN InStrideFlag,
36 IN PTR In,
37 IN BOOLEAN OutStrideFlag,
56 for (;Count > 0; Count--, In.buf += InStride, Out.buf += OutStride) {
57 *In.ui8 = *Out.ui8;
    [all...]
  /external/guava/guava-tests/test/com/google/common/io/
TestByteSource.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
59 return new RandomAmountInputStream(new In(), new Random());
62 private final class In extends TestInputStream {
64 public In() throws IOException {
  /device/linaro/bootloader/OpenPlatformPkg/Platforms/TexasInstruments/BeagleBoard/Tools/
replace.c 47 FILE *In, *Out;
61 fprintf (stderr, "Match and Replace string must come in pairs\n");
65 In = fopen (argv[1], "r");
66 fseek (In, 0, SEEK_END);
67 InFileSize = ftell (In);
72 fseek (In, 0, SEEK_SET);
76 if ((In == NULL) || (Out == NULL)) {
111 // file in a buffer. So all the reads don't really hit the disk.
114 fseek (In, InFilePos, SEEK_SET);
115 ReadCount = fread (Key, 1, MaxLenKey, In);
    [all...]
  /device/linaro/bootloader/edk2/BeagleBoardPkg/Tools/
replace.c 47 FILE *In, *Out;
61 fprintf (stderr, "Match and Replace string must come in pairs\n");
65 In = fopen (argv[1], "r");
66 fseek (In, 0, SEEK_END);
67 InFileSize = ftell (In);
72 fseek (In, 0, SEEK_SET);
76 if ((In == NULL) || (Out == NULL)) {
111 // file in a buffer. So all the reads don't really hit the disk.
114 fseek (In, InFilePos, SEEK_SET);
115 ReadCount = fread (Key, 1, MaxLenKey, In);
    [all...]
  /prebuilts/go/darwin-x86/src/image/
geom.go 3 // license that can be found in the LICENSE file.
42 // In reports whether p is in r.
43 func (p Point) In(r Rectangle) bool {
48 // Mod returns the point q in r such that p.X-q.X is a multiple of r's width
83 // returns color.Opaque for points in the rectangle and color.Transparent
211 // In reports whether every point in r is in s.
212 func (r Rectangle) In(s Rectangle) bool
    [all...]
  /prebuilts/go/darwin-x86/src/unicode/
graphic.go 3 // license that can be found in the LICENSE file.
38 // and in the index we convert to uint8 to avoid the range check.
42 return In(r, GraphicRanges...)
54 return In(r, PrintRanges...)
58 // The function "In" provides a nicer signature and should be used in preference to IsOneOf.
68 // In reports whether the rune is a member of one of the ranges.
69 func In(r rune, ranges ...*RangeTable) bool {
99 // There are no mark characters in Latin-1.
121 // by Unicode's White Space property; in the Latin-1 spac
    [all...]
  /prebuilts/go/linux-x86/src/image/
geom.go 3 // license that can be found in the LICENSE file.
42 // In reports whether p is in r.
43 func (p Point) In(r Rectangle) bool {
48 // Mod returns the point q in r such that p.X-q.X is a multiple of r's width
83 // returns color.Opaque for points in the rectangle and color.Transparent
211 // In reports whether every point in r is in s.
212 func (r Rectangle) In(s Rectangle) bool
    [all...]
  /prebuilts/go/linux-x86/src/unicode/
graphic.go 3 // license that can be found in the LICENSE file.
38 // and in the index we convert to uint8 to avoid the range check.
42 return In(r, GraphicRanges...)
54 return In(r, PrintRanges...)
58 // The function "In" provides a nicer signature and should be used in preference to IsOneOf.
68 // In reports whether the rune is a member of one of the ranges.
69 func In(r rune, ranges ...*RangeTable) bool {
99 // There are no mark characters in Latin-1.
121 // by Unicode's White Space property; in the Latin-1 spac
    [all...]
  /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);
  /device/linaro/bootloader/edk2/BaseTools/Source/C/Split/
Split.c 62 printf ("\n SplitFile creates two Binary files either in the same directory as the current working\n");
63 printf (" directory or in the specified directory.\n");
89 -s, --split VALUE the number of bytes in the first file\n\
102 IN CONST CHAR8* SplitValueString,
156 IN CONST CHAR8* VerboseLevelString,
157 IN CONST UINT64 Length,
174 IN OUT CHAR8** FullFileName
226 FILE *In;
358 In = fopen (LongFilePath (InputFileName), "rb");
359 if (In == NULL) {
    [all...]
  /device/linaro/bootloader/edk2/DuetPkg/PciRootBridgeNoEnumerationDxe/
PcatPciRootBridgeIo.c 31 IN EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL *This,
32 IN EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL_WIDTH Width,
33 IN UINT64 Address,
34 IN UINT64 Mask,
35 IN UINT64 Value,
36 IN UINT64 Delay,
43 IN EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL *This,
44 IN EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL_WIDTH Width,
45 IN UINT64 Address,
46 IN UINT64 Mask,
    [all...]