Home
last modified time | relevance | path

Searched refs:get_int (Results 1 – 25 of 28) sorted by relevance

12

/external/skia/src/codec/
DSkBmpCodec.cpp157 totalBytes = get_int(hBuffer, 2); in ReadHeader()
158 offset = get_int(hBuffer, 10); in ReadHeader()
167 infoBytes = get_int(hBuffer, 14); in ReadHeader()
189 infoBytes = get_int(hBuffer, 0); in ReadHeader()
238 width = get_int(iBuffer.get(), 0); in ReadHeader()
239 height = get_int(iBuffer.get(), 4); in ReadHeader()
245 compression = get_int(iBuffer.get(), 12); in ReadHeader()
247 numColors = get_int(iBuffer.get(), 28); in ReadHeader()
342 inputMasks.red = get_int(buffer, 0); in ReadHeader()
343 inputMasks.green = get_int(buffer, 4); in ReadHeader()
[all …]
DSkIcoCodec.cpp83 uint32_t size = get_int(entryBuffer, 8); in MakeFromStream()
88 uint32_t offset = get_int(entryBuffer, 12); in MakeFromStream()
DSkCodecPriv.h193 static inline uint32_t get_int(uint8_t* buffer, uint32_t i) { in get_int() function
/external/skqp/src/codec/
DSkBmpCodec.cpp157 totalBytes = get_int(hBuffer, 2); in ReadHeader()
158 offset = get_int(hBuffer, 10); in ReadHeader()
167 infoBytes = get_int(hBuffer, 14); in ReadHeader()
189 infoBytes = get_int(hBuffer, 0); in ReadHeader()
238 width = get_int(iBuffer.get(), 0); in ReadHeader()
239 height = get_int(iBuffer.get(), 4); in ReadHeader()
245 compression = get_int(iBuffer.get(), 12); in ReadHeader()
247 numColors = get_int(iBuffer.get(), 28); in ReadHeader()
337 inputMasks.red = get_int(buffer, 0); in ReadHeader()
338 inputMasks.green = get_int(buffer, 4); in ReadHeader()
[all …]
DSkIcoCodec.cpp83 uint32_t size = get_int(entryBuffer, 8); in MakeFromStream()
88 uint32_t offset = get_int(entryBuffer, 12); in MakeFromStream()
DSkCodecPriv.h193 static inline uint32_t get_int(uint8_t* buffer, uint32_t i) { in get_int() function
/external/clang/test/SemaCXX/
Dwarn-tautological-undefined-compare.cpp37 int& get_int();
48 if (&get_int() == 0) {} in test()
50 if (&(get_int()) == 0) {} in test()
53 if (&get_int() != 0) {} in test()
55 if (&(get_int()) != 0) {} in test()
101 int& (*f_ptr)() = &get_int; in test()
Dwarn-undefined-bool-conversion.cpp40 int& get_int();
51 if (&get_int()) {} in test()
53 if (&(get_int())) {} in test()
55 if (!&get_int()) {} in test()
89 int& (*f_ptr)() = &get_int; in test()
/external/clang/test/CodeGenCXX/
Dreference-cast.cpp66 int get_int();
73 return (const bool&)get_int(); in lvalue_integer_bool_cast()
77 return static_cast<const bool&>(get_int()); in lvalue_integer_bool_cast()
80 return get_int(); in lvalue_integer_bool_cast()
/external/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.create/
Dallocate_shared.pass.cpp38 int get_int() const {return int_;} in get_int() function
55 assert(p->get_int() == 67); in main()
65 assert(p->get_int() == 67); in main()
74 assert(p->get_int() == 68); in main()
Dmake_shared.pass.cpp32 int get_int() const {return int_;} in get_int() function
77 assert(p->get_int() == 67); in main()
97 assert(p->get_int() == 67); in main()
/external/toybox/toys/pending/
Dexpr.c79 int get_int(struct value *v, long long *ret) in get_int() function
102 return get_int(v, &v->i) && !v->i; in is_false()
170 if (get_int(ret, &a) && get_int(rhs, &b)) { // both are ints in eval_op()
189 if (!get_int(ret, &a) || !get_int(rhs, &b)) in eval_op()
/external/adhd/cras/src/server/
Dcras_alsa_ucm.c128 static int get_int(struct cras_use_case_mgr *mgr, const char *var, in get_int() function
622 rc = get_int(mgr, min_buffer_level_var, "", uc_verb(mgr), &value); in ucm_get_min_buffer_level()
634 rc = get_int(mgr, disable_software_volume, "", uc_verb(mgr), &value); in ucm_get_disable_software_volume()
647 rc = get_int(mgr, max_software_gain, dev, uc_verb(mgr), &value); in ucm_get_max_software_gain()
660 rc = get_int(mgr, default_node_gain, dev, uc_verb(mgr), &value); in ucm_get_default_node_gain()
692 rc = get_int(mgr, var_name, dev, uc_verb(mgr), &value); in ucm_get_sample_rate_for_dev()
1030 int rc = get_int(mgr, jack_switch_var, dev, uc_verb(mgr), &value); in ucm_get_jack_switch_for_dev()
1041 int rc = get_int(mgr, dma_period_var, dev, uc_verb(mgr), &value); in ucm_get_dma_period_for_dev()
/external/python/cpython2/Lib/lib2to3/
Dpatcomp.py126 min = max = self.get_int(children[1])
128 max = self.get_int(children[3])
174 def get_int(self, node): member in PatternCompiler
/external/python/cpython3/Lib/lib2to3/
Dpatcomp.py126 min = max = self.get_int(children[1])
128 max = self.get_int(children[3])
174 def get_int(self, node): member in PatternCompiler
/external/skia/src/ports/
DSkFontConfigInterface_direct.cpp363 static int get_int(FcPattern* pattern, const char object[], int missing) { in get_int() function
428 int weight = map_ranges(get_int(pattern, FC_WEIGHT, FC_WEIGHT_REGULAR), in skfontstyle_from_fcpattern()
442 int width = map_ranges(get_int(pattern, FC_WIDTH, FC_WIDTH_NORMAL), in skfontstyle_from_fcpattern()
446 switch (get_int(pattern, FC_SLANT, FC_SLANT_ROMAN)) { in skfontstyle_from_fcpattern()
675 int face_index = get_int(match, FC_INDEX, 0); in matchFamilyName()
DSkFontMgr_fontconfig.cpp150 static int get_int(FcPattern* pattern, const char object[], int missing) { in get_int() function
345 int weight = map_ranges(get_int(pattern, FC_WEIGHT, FC_WEIGHT_REGULAR), in skfontstyle_from_fcpattern()
359 int width = map_ranges(get_int(pattern, FC_WIDTH, FC_WIDTH_NORMAL), in skfontstyle_from_fcpattern()
363 switch (get_int(pattern, FC_SLANT, FC_SLANT_ROMAN)) { in skfontstyle_from_fcpattern()
475 *ttcIndex = get_int(fPattern, FC_INDEX, 0); in onOpenStream()
525 FC_PROPORTIONAL != get_int(pattern, FC_SPACING, FC_PROPORTIONAL)) in SkTypeface_fontconfig()
/external/skqp/src/ports/
DSkFontConfigInterface_direct.cpp363 static int get_int(FcPattern* pattern, const char object[], int missing) { in get_int() function
428 int weight = map_ranges(get_int(pattern, FC_WEIGHT, FC_WEIGHT_REGULAR), in skfontstyle_from_fcpattern()
442 int width = map_ranges(get_int(pattern, FC_WIDTH, FC_WIDTH_NORMAL), in skfontstyle_from_fcpattern()
446 switch (get_int(pattern, FC_SLANT, FC_SLANT_ROMAN)) { in skfontstyle_from_fcpattern()
675 int face_index = get_int(match, FC_INDEX, 0); in matchFamilyName()
DSkFontMgr_fontconfig.cpp150 static int get_int(FcPattern* pattern, const char object[], int missing) { in get_int() function
345 int weight = map_ranges(get_int(pattern, FC_WEIGHT, FC_WEIGHT_REGULAR), in skfontstyle_from_fcpattern()
359 int width = map_ranges(get_int(pattern, FC_WIDTH, FC_WIDTH_NORMAL), in skfontstyle_from_fcpattern()
363 switch (get_int(pattern, FC_SLANT, FC_SLANT_ROMAN)) { in skfontstyle_from_fcpattern()
475 *ttcIndex = get_int(fPattern, FC_INDEX, 0); in onOpenStream()
525 FC_PROPORTIONAL != get_int(pattern, FC_SPACING, FC_PROPORTIONAL)) in SkTypeface_fontconfig()
/external/clang/test/CodeGen/
Dle32-vaarg.c4 int get_int(va_list *args) { in get_int() function
Dsparc-vaarg.c9 int get_int(va_list *args) { in get_int() function
/external/clang/test/CXX/temp/temp.decls/temp.class/temp.static/
Dp1.cpp22 int& get_int() { return X0<int>::value; } in get_int() function
/external/wpa_supplicant_8/src/eap_peer/
Deap.h166 unsigned int (*get_int)(void *ctx, enum eapol_int_var variable); member
/external/v8/src/wasm/
Dwasm-objects.cc974 decoded_table->get_int(idx - kOTESize)); in GetDecodedAsmJsOffsetTable()
1006 int mid_entry = offset_table->get_int(kOTESize * mid); in GetAsmJsSourcePosition()
1016 DCHECK_EQ(total_offset, offset_table->get_int(kOTESize * left)); in GetAsmJsSourcePosition()
1018 return offset_table->get_int(kOTESize * left + idx); in GetAsmJsSourcePosition()
/external/llvm/test/DebugInfo/X86/
Dsret.ll295 !33 = !DISubprogram(name: "get_int", linkageName: "_ZN1A7get_intEv", line: 10, isLocal: false, isDe…
310 !52 = distinct !DISubprogram(name: "get_int", linkageName: "_ZN1A7get_intEv", line: 33, isLocal: fa…

12