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

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/go/darwin-x86/src/go/internal/gccgoimporter/testdata/
pointer.go 3 type Int8Ptr *int8
  /prebuilts/go/linux-x86/src/go/internal/gccgoimporter/testdata/
pointer.go 3 type Int8Ptr *int8
  /prebuilts/go/darwin-x86/test/bench/shootout/
meteor-contest.go 46 func boolInt(b bool) int8 {
104 var piece_def = [10][4]int8{
105 [4]int8{E, E, E, SE},
106 [4]int8{SE, E, NE, E},
107 [4]int8{E, E, SE, SW},
108 [4]int8{E, E, SW, SE},
109 [4]int8{SE, E, NE, S},
110 [4]int8{E, E, SW, E},
111 [4]int8{E, SE, SE, NE},
112 [4]int8{E, SE, SE, W}
    [all...]
  /prebuilts/go/linux-x86/test/bench/shootout/
meteor-contest.go 46 func boolInt(b bool) int8 {
104 var piece_def = [10][4]int8{
105 [4]int8{E, E, E, SE},
106 [4]int8{SE, E, NE, E},
107 [4]int8{E, E, SE, SW},
108 [4]int8{E, E, SW, SE},
109 [4]int8{SE, E, NE, S},
110 [4]int8{E, E, SW, E},
111 [4]int8{E, SE, SE, NE},
112 [4]int8{E, SE, SE, W}
    [all...]
  /external/neven/Embedded/common/src/b_TensorEm/
CompactMat.c 73 #ifndef HW_TMS320C5x /* platforms that don't have int8 must use the 'default' implementation */
80 sumL += ( ( int8 ) dpL[ 0 ] * ( int32 )inPtrL[ 0 ] );
81 sumL += ( ( int8 )( dpL[ 0 ] >> 8 ) * ( int32 )inPtrL[ 1 ] );
82 sumL += ( ( int8 ) dpL[ 1 ] * ( int32 )inPtrL[ 2 ] );
83 sumL += ( ( int8 )( dpL[ 1 ] >> 8 ) * ( int32 )inPtrL[ 3 ] );
84 sumL += ( ( int8 ) dpL[ 2 ] * ( int32 )inPtrL[ 4 ] );
85 sumL += ( ( int8 )( dpL[ 2 ] >> 8 ) * ( int32 )inPtrL[ 5 ] );
86 sumL += ( ( int8 ) dpL[ 3 ] * ( int32 )inPtrL[ 6 ] );
87 sumL += ( ( int8 )( dpL[ 3 ] >> 8 ) * ( int32 )inPtrL[ 7 ] );
93 sumL += ( ( int8 ) *dpL * ( int32 )inPtrL[ 0 ] )
    [all...]
  /external/google-breakpad/src/common/dwarf/
types.h 38 typedef signed char int8; typedef
  /prebuilts/go/darwin-x86/src/go/internal/gccgoimporter/
parser_test.go 18 {id: "foo", typ: "<type -1>", want: "int8"},
22 {id: "foo", typ: "<type 1 \"bar.Foo\" \"bar\" <type -1> func (? <type 1>) M (); >", want: "bar.Foo", underlying: "int8", methods: "func (bar.Foo).M()"},
23 {id: "foo", typ: "<type 1 \".bar.foo\" \"bar\" <type -1>>", want: "bar.foo", underlying: "int8"},
24 {id: "foo", typ: "<type 1 []<type -1>>", want: "[]int8"},
25 {id: "foo", typ: "<type 1 [42]<type -1>>", want: "[42]int8"},
26 {id: "foo", typ: "<type 1 map [<type -1>] <type -2>>", want: "map[int8]int16"},
27 {id: "foo", typ: "<type 1 chan <type -1>>", want: "chan int8"},
28 {id: "foo", typ: "<type 1 chan <- <type -1>>", want: "<-chan int8"},
29 {id: "foo", typ: "<type 1 chan -< <type -1>>", want: "chan<- int8"},
30 {id: "foo", typ: "<type 1 struct { I8 <type -1>; I16 <type -2> \"i16\"; }>", want: "struct{I8 int8; I16 int16 \"i16\"}"}
    [all...]
  /prebuilts/go/linux-x86/src/go/internal/gccgoimporter/
parser_test.go 18 {id: "foo", typ: "<type -1>", want: "int8"},
22 {id: "foo", typ: "<type 1 \"bar.Foo\" \"bar\" <type -1> func (? <type 1>) M (); >", want: "bar.Foo", underlying: "int8", methods: "func (bar.Foo).M()"},
23 {id: "foo", typ: "<type 1 \".bar.foo\" \"bar\" <type -1>>", want: "bar.foo", underlying: "int8"},
24 {id: "foo", typ: "<type 1 []<type -1>>", want: "[]int8"},
25 {id: "foo", typ: "<type 1 [42]<type -1>>", want: "[42]int8"},
26 {id: "foo", typ: "<type 1 map [<type -1>] <type -2>>", want: "map[int8]int16"},
27 {id: "foo", typ: "<type 1 chan <type -1>>", want: "chan int8"},
28 {id: "foo", typ: "<type 1 chan <- <type -1>>", want: "<-chan int8"},
29 {id: "foo", typ: "<type 1 chan -< <type -1>>", want: "chan<- int8"},
30 {id: "foo", typ: "<type 1 struct { I8 <type -1>; I16 <type -2> \"i16\"; }>", want: "struct{I8 int8; I16 int16 \"i16\"}"}
    [all...]
  /system/extras/perfprofd/quipper/base/
basictypes.h 22 typedef int8_t int8; typedef
49 const int8 kint8min = -0x7F - 1;
50 const int8 kint8max = 0x7F;
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug452.go 21 func bar() int8 {
28 return int8(W+int16(X+3)+3) * int8(Y+3+Z*3)
  /prebuilts/go/linux-x86/test/fixedbugs/
bug452.go 21 func bar() int8 {
28 return int8(W+int16(X+3)+3) * int8(Y+3+Z*3)
  /external/libgdx/extensions/gdx-box2d/gdx-box2d/jni/Box2D/Common/
b2BlockAllocator.cpp 143 b2Block* block = (b2Block*)((int8*)chunk->blocks + blockSize * i);
144 b2Block* next = (b2Block*)((int8*)chunk->blocks + blockSize * (i + 1));
147 b2Block* last = (b2Block*)((int8*)chunk->blocks + blockSize * (blockCount - 1));
184 b2Assert( (int8*)p + blockSize <= (int8*)chunk->blocks ||
185 (int8*)chunk->blocks + b2_chunkSize <= (int8*)p);
189 if ((int8*)chunk->blocks <= (int8*)p && (int8*)p + blockSize <= (int8*)chunk->blocks + b2_chunkSize
    [all...]
  /external/mesa3d/src/gallium/drivers/svga/include/
svga_types.h 41 typedef int8_t int8; typedef
  /frameworks/av/media/libstagefright/codecs/mp3dec/include/
pvmp3_audio_type_defs.h 66 typedef int8_t int8; typedef
  /hardware/qcom/media/msm8974/mm-video-legacy/vidc/vdec/inc/
qtypes.h 73 typedef signed char int8; /* Signed 8 bit value */ typedef
  /hardware/qcom/media/msm8974/mm-video-v4l2/vidc/vdec/inc/
qtypes.h 73 typedef signed char int8; /* Signed 8 bit value */ typedef
  /hardware/qcom/media/msm8996/mm-video-v4l2/vidc/vdec/inc/
qtypes.h 73 typedef signed char int8; /* Signed 8 bit value */ typedef
  /external/vulkan-validation-layers/libs/glm/gtx/
bit.hpp 122 GLM_FUNC_DECL int16 bitfieldInterleave(int8 x, int8 y);
164 GLM_FUNC_DECL int32 bitfieldInterleave(int8 x, int8 y, int8 z);
206 GLM_FUNC_DECL int32 bitfieldInterleave(int8 x, int8 y, int8 z, int8 w);
  /external/dng_sdk/source/
dng_types.h 41 typedef int8_t int8; typedef
53 typedef signed char int8; typedef
  /prebuilts/go/darwin-x86/test/fixedbugs/bug460.dir/
a.go 9 int8
  /prebuilts/go/linux-x86/test/fixedbugs/bug460.dir/
a.go 9 int8
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/
wlioctl.h 132 int8 phy_noise; /* noise (in dBm) */
165 int8 phy_noise; /* noise (in dBm) */
207 int8 phy_noise; /* noise (in dBm) */
341 int8 nprobes; /* 0, passive, otherwise active */
342 int8 split_scan; /* split scan */
343 int8 band; /* band */
344 int8 pad;
370 int8 bss_type; /* default: any,
777 int8 type;
778 int8 flags
    [all...]
  /external/neven/Embedded/common/src/b_BasicEm/
Phase.h 39 typedef int8 phase8;
  /external/vulkan-validation-layers/libs/glm/detail/
type_int.hpp 42 typedef std::int8_t int8; typedef in namespace:glm::detail
69 typedef signed char int8;
89 typedef detail::int8 int8; typedef in namespace:glm
178 GLM_STATIC_ASSERT(sizeof(glm::int8) == 1, "int8 size isn't 1 byte on this platform");
  /prebuilts/go/darwin-x86/test/
intcvt.go 27 i8 int8 = ci8
41 func chki8(i, v int8) {
93 chki8(int8(i8), ci8&0xff-1<<8)
94 chki8(int8(i16), ci16&0xff)
95 chki8(int8(i32), ci32&0xff-1<<8)
96 chki8(int8(i64), ci64&0xff)
97 chki8(int8(u8), cu8&0xff-1<<8)
98 chki8(int8(u16), cu16&0xff)
99 chki8(int8(u32), cu32&0xff)
100 chki8(int8(u64), cu64&0xff
    [all...]

Completed in 667 milliseconds

1 2 3 4 5 6 7 8 91011>>