Home
last modified time | relevance | path

Searched refs:Int (Results 1 – 19 of 19) sorted by relevance

/AliOS-Things-master/components/SDL2/src/image/external/zlib-1.2.11/contrib/ada/
A Dzlib-thin.ads125 function Deflate (strm : Z_Streamp; flush : Int) return Int;
129 function Inflate (strm : Z_Streamp; flush : Int) return Int;
196 return Int;
202 return Int;
211 len : Int)
214 function gzputc (file : gzFile; char : Int) return Int;
218 function gzflush (file : gzFile; flush : Int) return Int;
222 offset : Int;
223 whence : Int)
350 return Int;
[all …]
A Dzlib-thin.adb15 Z_Stream_Size : constant Int := Z_Stream'Size / System.Storage_Unit;
41 level : Int;
42 method : Int;
43 windowBits : Int;
44 memLevel : Int;
45 strategy : Int)
46 return Int is
63 function Inflate_Init (strm : Z_Streamp; windowBits : Int) return Int is
A Dzlib.adb21 use type Thin.Int;
37 function (Strm : in Thin.Z_Streamp; Flush : in Thin.Int) return Thin.Int;
122 use type Thin.Int;
139 Code : Thin.Int;
199 use type Thin.Int;
200 Win_Bits : Thin.Int := Thin.Int (Window_Bits);
313 use type Thin.Int;
314 Win_Bits : Thin.Int := Thin.Int (Window_Bits);
516 use type Thin.Int;
517 Code : Thin.Int;
[all …]
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/tensorflow/lite/experimental/microfrontend/
A Daudio_microfrontend_test.cc55 fbb.Int("sample_rate", 1000); in MicroFrontendOpModel()
56 fbb.Int("window_size", 25); in MicroFrontendOpModel()
57 fbb.Int("window_step", 10); in MicroFrontendOpModel()
58 fbb.Int("num_channels", 2); in MicroFrontendOpModel()
61 fbb.Int("smoothing_bits", 10); in MicroFrontendOpModel()
68 fbb.Int("gain_bits", 21); in MicroFrontendOpModel()
70 fbb.Int("scale_shift", 6); in MicroFrontendOpModel()
73 fbb.Int("left_context", n_left_context); in MicroFrontendOpModel()
74 fbb.Int("right_context", n_right_context); in MicroFrontendOpModel()
75 fbb.Int("frame_stride", n_frame_stride); in MicroFrontendOpModel()
[all …]
/AliOS-Things-master/components/jsoncpp/include/json/
A Dvalue.h201 using Int = Json::Int; variable
231 static constexpr Int minInt = Int(~(UInt(-1) / 2));
233 static constexpr Int maxInt = Int(UInt(-1) / 2);
316 Value(Int value);
386 Int asInt() const;
660 template <> inline Int Value::as<Int>() const { return asInt(); }
661 template <> inline bool Value::is<Int>() const { return isInt(); }
A Dconfig.h108 using Int = int; variable
A Dwriter.h344 String JSON_API valueToString(Int value);
/AliOS-Things-master/components/freetype/src/raster/
A Dftraster.c308 typedef int Int; typedef
468 Int precision;
469 Int precision_half;
884 Int n; in Insert_Y_Turn()
898 Int y2 = (Int)y_turns[n]; in Insert_Y_Turn()
947 Int bottom, top; in Finalize_Profile_Table()
1120 e1 = (Int)TRUNC( y1 ); in Line_Up()
1121 f1 = (Int)FRAC( y1 ); in Line_Up()
1132 e2 = (Int)TRUNC( y2 ); in Line_Up()
1133 f2 = (Int)FRAC( y2 ); in Line_Up()
[all …]
/AliOS-Things-master/components/oss/src/external/json/
A Djson.h275 typedef int Int; typedef
646 typedef Json::Int Int; typedef
670 static const Int minInt;
672 static const Int maxInt;
755 Value(Int value);
831 Int asInt() const;
2133 JSONCPP_STRING JSON_API valueToString(Int value);
A Djson-forwards.h241 typedef int Int; typedef
A Djsoncpp.cpp2539 const Int Value::minInt = Int(~(UInt(-1) / 2));
2540 const Int Value::maxInt = Int(UInt(-1) / 2);
2888 Value::Value(Int value) { in Value()
3236 Value::Int Value::asInt() const { in asInt()
3240 return Int(value_.int_); in asInt()
3243 return Int(value_.uint_); in asInt()
3247 return Int(value_.real_); in asInt()
4294 JSONCPP_STRING valueToString(Int value) { in valueToString()
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/tensorflow/lite/experimental/kernels/
A Dctc_beam_search_decoder_test.cc57 fbb.Int("beam_width", beam_width); in CTCBeamSearchDecoderOpModel()
58 fbb.Int("top_paths", top_paths); in CTCBeamSearchDecoderOpModel()
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/third_party/ruy/ruy/
A Dsize_util_test.cc83 TEST(SizeUtilTest, Int) { SizeUtilTest<int>(); } in TEST() argument
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/third_party/flatbuffers/include/flatbuffers/
A Dflexbuffers.h951 void Int(int64_t i) { stack_.push_back(Value(i, FBT_INT, WidthI(i))); } in Int() function
952 void Int(const char *key, int64_t i) { in Int() function
954 Int(i); in Int()
1280 void Add(int8_t i) { Int(i); } in Add()
1281 void Add(int16_t i) { Int(i); } in Add()
1282 void Add(int32_t i) { Int(i); } in Add()
1283 void Add(int64_t i) { Int(i); } in Add()
/AliOS-Things-master/hardware/chip/rtl872xd/sdk/component/soc/realtek/amebad/fwlib/include/
A Drtl8721d_sdio_host.h405 u16 Int:1; member
771 u16 Int:1; member
/AliOS-Things-master/components/jsoncpp/src/lib_json/
A Djson_value.cpp376 Value::Value(Int value) { in Value()
654 Value::Int Value::asInt() const { in asInt()
658 return Int(value_.int_); in asInt()
661 return Int(value_.uint_); in asInt()
665 return Int(value_.real_); in asInt()
A Djson_writer.cpp120 String valueToString(Int value) { return valueToString(LargestInt(value)); } in valueToString()
/AliOS-Things-master/components/SDL2/src/image/external/zlib-1.2.11/os400/
A Dzlib.inc102 D zs_zalloc * procptr Int. state allocator
103 D zs_free * procptr Int. state dealloc.
/AliOS-Things-master/components/jsoncpp/src/test_lib_json/
A Dmain.cpp453 JSONTEST_ASSERT_EQUAL(Json::Int(0), null_.asInt()); in JSONTEST_FIXTURE_LOCAL()
3915 EqEval(Json::Int(64), [](const Json::Value& j) { return j.asInt(); }); in JSONTEST_FIXTURE_LOCAL()
3938 JSONTEST_ASSERT_EQUAL(j.is<Json::Int>(), j.isInt()); in JSONTEST_FIXTURE_LOCAL()

Completed in 62 milliseconds