Home
last modified time | relevance | path

Searched refs:push_int (Results 1 – 7 of 7) sorted by relevance

/external/flatbuffers/rust/flexbuffers/src/builder/
Dpush.rs78 forward_to_builder!(i8, push_int);
79 forward_to_builder!(i16, push_int);
80 forward_to_builder!(i32, push_int);
81 forward_to_builder!(i64, push_int);
Dmod.rs201 fn push_int<T: Into<i64>>(&mut self, x: T) { in push_int() method
/external/sdv/vsomeip/third_party/boost/spirit/classic/example/fundamental/
Dfull_calc.cpp34 struct push_int struct
36 push_int(stack<long>& eval_) in push_int() argument
112 lexeme_d[ (+digit_p)[push_int(self.eval)] ] in definition()
Dcalc_debug.cpp38 struct push_int struct
40 push_int(stack<long>& eval_) in push_int() function
116 lexeme_d[ (+digit_p)[push_int(self.eval)] ] in definition()
/external/sdv/vsomeip/third_party/boost/spirit/classic/example/fundamental/more_calculators/
Dvmachine_calc.cpp110 struct push_int struct
112 push_int(vector<int>& code_) in push_int() argument
206 lexeme_d[ (+digit_p)[push_int(self.code)] ] in definition()
/external/harfbuzz_ng/src/
Dhb-cff-interp-common.hh430 void push_int (int v) in push_int() function
465 push_int ((str_ref[0] << 24) | (str_ref[1] << 16) | (str_ref[2] << 8) | (str_ref[3])); in push_longint_from_substr()
603 env.argStack.push_int ((int16_t)((env.str_ref[0] << 8) | env.str_ref[1])); in process_op()
609 env.argStack.push_int ((int16_t)((op - OpCode_TwoBytePosInt0) * 256 + env.str_ref[0] + 108)); in process_op()
615 env.argStack.push_int ((-(int16_t)(op - OpCode_TwoByteNegInt0) * 256 - env.str_ref[0] - 108)); in process_op()
623 env.argStack.push_int ((int)op - 139); in process_op()
/external/rust/android-crates-io/crates/rusqlite/src/
Dpragma.rs90 self.push_int(i); in push_value()
113 pub fn push_int(&mut self, i: i64) { in push_int() method